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
Expansion of 1 / (b(x^2) * phi(-x)^2) in powers of x where phi() is a Ramanujan theta function and b() is a cubic AGM theta function.
Expansion of q^(-1/2) * eta(q^6)^3 / (eta(q)^4 * eta(q^2)) in powers of q.
Euler transform of period 6 sequence [ 4, 5, 4, 5, 4, 2, ...].
G.f.: Product_{k>0} (1 - x^(6*k))^3 / ((1 - x^k)^4 * (1 - x^(2*k))).
a(n) ~ exp(2*Pi*sqrt(2*n/3)) / (6^(9/4) * n^(5/4)). - Vaclav Kotesovec, Oct 14 2015
EXAMPLE
G.f. = 1 + 4*x + 15*x^2 + 44*x^3 + 121*x^4 + 300*x^5 + 707*x^6 + 1572*x^7 + ...
G.f. = q + 4*q^3 + 15*q^5 + 44*q^7 + 121*q^9 + 300*q^11 + 707*q^13 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ QPochhammer[ x^6]^3 / (QPochhammer[ x]^4 QPochhammer[ x^2]), {x, 0, n}];
PROG
(PARI) {a(n) = my(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x^6 + A)^3 / (eta(x + A)^4 * eta(x^2 + A)), n))};
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael Somos, Jul 02 2015
STATUS
approved