OFFSET
0,2
COMMENTS
Number of partitions of n where there are 2 kinds of odd parts and 3 kinds of even parts. - Ilya Gutkovskiy, Jan 17 2018
LINKS
Vaclav Kotesovec, A method of finding the asymptotics of q-series based on the convolution of generating functions, arXiv:1509.08708 [math.CO], 2015-2016, p. 16.
N. J. A. Sloane, Transforms
FORMULA
Euler transform of period 2 sequence [2, 3, ...].
a(n) ~ 5 * exp(sqrt(5*n/3)*Pi) / (48 * n^(3/2)). - Vaclav Kotesovec, Sep 20 2015
G.f.: Product_{k >= 1} 1/(1-x^k)^A010693(k-1). - Georg Fischer, Dec 10 2020
EXAMPLE
G.f. = 1 + 2*x + 6*x^2 + 12*x^3 + 27*x^4 + 50*x^5 + 98*x^6 + 172*x^7 + ...
MATHEMATICA
nmax = 50; CoefficientList[Series[Product[1/((1 + x^k)*(1 - x^k)^3), {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Sep 20 2015 *)
PROG
(PARI) {a(n) = local(A); if( n<0, 0, A = x * O(x^n); polcoeff( 1 / (eta(x + A)^2 * eta(x^2 + A)), n))};
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved