OFFSET
0,2
COMMENTS
REFERENCES
T. J. I'a. Bromwich, Introduction to the Theory of Infinite Series, Macmillan, 2nd. ed. 1949, p. 116, q_2^3.
LINKS
Seiichi Manyama, Table of n, a(n) for n = 0..1000
Vaclav Kotesovec, A method of finding the asymptotics of q-series based on the convolution of generating functions, arXiv:1509.08708 [math.CO], Sep 30 2015, p. 13.
Michael Somos, Introduction to Ramanujan theta functions
Eric Weisstein's World of Mathematics, Ramanujan Theta Functions
FORMULA
Expansion of chi(-x)^3 = phi(-x) / psi(x) in powers of x where phi(), psi(), chi() are Ramanujan theta functions. - Michael Somos, Aug 09 2015
Expansion of q^(1/8) * (eta(q) / eta(q^2))^3 in powers of q. - Michael Somos, Apr 24 2015
Euler transform of period 2 sequence [ -3, 0, ...]. - Michael Somos, Aug 09 2015
Convolution cube of A081362. - Michael Somos, Apr 24 2015
Convolution inverse of A022568. - Michael Somos, Aug 09 2015
a(n) ~ (-1)^n * exp(Pi*sqrt(n/2)) / (2^(7/4) * n^(3/4)). - Vaclav Kotesovec, Aug 27 2015
a(0) = 1, a(n) = -(3/n)*Sum_{k=1..n} A000593(k)*a(n-k) for n > 0. - Seiichi Manyama, Apr 03 2017
G.f.: exp(-3*Sum_{k>=1} (-1)^(k+1)*x^k/(k*(1 - x^k))). - Ilya Gutkovskiy, Feb 06 2018
EXAMPLE
G.f. = 1 - 3*x + 3*x^2 - 4*x^3 + 9*x^4 - 12*x^5 + 15*x^6 - 21*x^7 + 30*x^8 + ...
G.f. = 1/q - 3*q^7 + 3*q^15 - 4*q^23 + 9*q^31 - 12*q^39 + 15*q^47 - 21*q^55 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ (QPochhammer[ x] / QPochhammer[x^2])^3, {x, 0, n}]; (* Michael Somos, Feb 22 2015 *)
nmax = 50; CoefficientList[Series[Product[1/(1 + x^k)^3, {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Aug 27 2015 *)
PROG
(PARI) {a(n) = my(A); if( n<0, 0, A = x * O(x^n); polcoeff( (eta(x + A) / eta(x^2 + A))^3, n))};
CROSSREFS
KEYWORD
sign
AUTHOR
STATUS
approved