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 + 4*x + 11*x^2 + 28*x^3 + 63*x^4 + 132*x^5 + 264*x^6 + 504*x^7 + ...
G.f. = q + 4*q^3 + 11*q^5 + 28*q^7 + 63*q^9 + 132*q^11 + 264*q^13 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ QPochhammer[ x]^2 QPochhammer[ x^10] / 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)^3 * eta(x^10 + A) / eta(x + A)^4, n))};
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael Somos, Sep 09 2015
STATUS
approved