OFFSET
0,4
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^(1/12) * eta(q) * eta(q^4)^2 * eta(q^6)^5 / (eta(q^2) * eta(q^3)^5 * eta(q^12)^2) in powers of q.
Euler transform of period 12 sequence [ -1, 0, 4, -2, -1, 0, -1, -2, 4, 0, -1, 0, ...].
EXAMPLE
G.f. = 1 - x + 4*x^3 - 6*x^4 + x^5 + 11*x^6 - 19*x^7 + 4*x^8 + 31*x^9 + ...
G.f. = q^-1 - q^11 + 4*q^35 - 6*q^47 + q^59 + 11*q^71 - 19*q^83 + 4*q^95 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ EllipticTheta[ 2, 0, x] EllipticTheta[ 3, 0, x^3] QPochhammer[ x] / (2 x^(1/4) QPochhammer[ x^3]^3), {x, 0, n}]; (* Michael Somos, Jan 29 2015 *)
PROG
(PARI) {a(n) = my(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x + A) * eta(x^4 + A)^2 * eta(x^6 + A)^5 / (eta(x^2 + A) * eta(x^3 + A)^5 * eta(x^12 + A)^2), n))};
CROSSREFS
KEYWORD
sign
AUTHOR
Michael Somos, Oct 14 2013
STATUS
approved