OFFSET
0,3
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 f(x^3)^3 / (f(x) * phi(-x^6)) in powers of x where phi(), f() are Ramanujan theta functions.
Expansion of q^(-1/3) * eta(q) * eta(q^4) * eta(q^6)^7 / (eta(q^2)^3 * eta(q^3)^3 * eta(q^12)^2) in powers of q.
Euler transform of period 12 sequence [ -1, 2, 2, 1, -1, -2, -1, 1, 2, 2, -1, -1, ...].
EXAMPLE
G.f. = 1 - x + 2*x^2 + 2*x^4 - x^5 + 4*x^6 - 2*x^7 + 5*x^8 - 2*x^9 + ...
G.f. = q - q^4 + 2*q^7 + 2*q^13 - q^16 + 4*q^19 - 2*q^22 + 5*q^25 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ QPochhammer[ -x^3]^3 / (QPochhammer[ -x] EllipticTheta[ 4, 0, x^6]), {x, 0, n}];
PROG
(PARI) {a(n) = my(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x + A) * eta(x^4 + A) * eta(x^6 + A)^7 / (eta(x^2 + A)^3 * eta(x^3 + A)^3 * eta(x^12 + A)^2), n))};
(PARI) q='q+O('q^99); Vec(eta(q)*eta(q^4)*eta(q^6)^7/(eta(q^2)^3*eta(q^3)^3*eta(q^12)^2)) \\ Altug Alkan, Aug 01 2018
CROSSREFS
KEYWORD
sign
AUTHOR
Michael Somos, Jul 29 2015
STATUS
approved