OFFSET
0,2
COMMENTS
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..2500
Michael Somos, Introduction to Ramanujan theta functions
Eric Weisstein's World of Mathematics, Ramanujan Theta Functions
FORMULA
Expansion of q^(-11/12) * eta(q^2)^3 * eta(q^6)^3 / eta(q)^2 in powers of q.
Euler transform of period 6 sequence [2, -1, 2, -1, 2, -4, ...]. - Michael Somos, Aug 01 2018
EXAMPLE
G.f. = 1 + 2*x + 2*x^2 + 4*x^3 + 5*x^4 + 6*x^5 + 7*x^6 + 6*x^7 + ...
G.f. = q^11 + 2*q^23 + 2*q^35 + 4*q^47 + 5*q^59 + 6*q^71 + 7*q^83 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ QPochhammer[ x^2]^3 QPochhammer[ x^6]^3 / QPochhammer[ x]^2, {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^6 + A)^3 / eta(x + A)^2, n))};
(PARI) q='q+O('q^99); Vec(eta(q^2)^3*eta(q^6)^3/eta(q)^2) \\ Altug Alkan, Jul 31 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael Somos, Oct 07 2015
STATUS
approved