OFFSET
0,3
COMMENTS
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Michael Somos, Introduction to Ramanujan theta functions
Eric Weisstein's World of Mathematics, Ramanujan Theta Functions
FORMULA
Expansion of q^(-2/3) * b(q^2) * c(q^2) / (3 * f(-q^3)^4) in powers of q where b(), c() are cubic AGM theta functions.
Expansion of q^(-1/6) * (eta(q^2) * eta(q^6) / eta(q^3)^2)^2 in powers of q.
Euler transform of period 6 sequence [ 0, -2, 4, -2, 0, 0, ...].
G.f.: Product_{k>0} ( (1 - x^(2*k)) * (1 - x^(6*k)) / (1 - x^(3*k))^2 )^2.
EXAMPLE
G.f. = 1 - 2*x^2 + 4*x^3 - x^4 - 8*x^5 + 14*x^6 - 4*x^7 - 23*x^8 + 40*x^9 + ...
G.f. = q - 2*q^13 + 4*q^19 - q^25 - 8*q^31 + 14*q^37 - 4*q^43 - 23*q^49 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ (QPochhammer[ x^2] QPochhammer[ x^6] / QPochhammer[ x^3]^2)^2, {x, 0, n}];
PROG
(PARI) {a(n) = local(A); if( n<0, 0, A = x * O(x^n); polcoeff( (eta(x^2 + A) * eta(x^6 + A) / eta(x^3 + A)^2)^2, n))};
CROSSREFS
KEYWORD
sign
AUTHOR
Michael Somos, Dec 03 2013
STATUS
approved