OFFSET
0,2
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
EXAMPLE
G.f. = 1 + 2*x + 4*x^2 + 4*x^3 + 6*x^4 + 8*x^5 + 9*x^6 + 10*x^7 + 8*x^8 + ...
G.f. = q^3 + 2*q^7 + 4*q^11 + 4*q^15 + 6*q^19 + 8*q^23 + 9*q^27 + 10*q^31 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ QPochhammer[ x^3]^6 / (EllipticTheta[ 4, 0, x] EllipticTheta[ 4, 0, x^3]), {x, 0, n}];
PROG
(PARI) {a(n) = my(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x^2 + A) * eta(x^3 + A)^4 * eta(x^6 + A) / eta(x + A)^2, n))};
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael Somos, Oct 07 2015
STATUS
approved