OFFSET
0,10
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 psi(x^2) / psi(x^6) + x * psi(x^6) / psi(x^2) in powers of
Expansion of phi(-x^6) * chi(-x^3)^3 / psi(-x) = psi(-x^3)^3 / (psi(-x) * psi(x^6)^2) in powers of x where phi(), psi(), chi() are Ramanujan theta functions.
Expansion of q^(1/2) * eta(q^2) * eta(q^3)^3 / (eta(q) * eta(q^4) * eta(q^6) * eta(q^12)) in powers of q.
Euler transform of period 12 sequence [ 1, 0, -2, 1, 1, -2, 1, 1, -2, 0, 1, 0, ...].
EXAMPLE
G.f. = 1 + x + x^2 - x^3 + x^5 - x^7 - x^8 + 2*x^9 - 3*x^11 + x^12 + ...
G.f. = q^-1 + q + q^3 - q^5 + q^9 - q^13 - q^15 + 2*q^17 - 3*q^21 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ 2 x^(1/2) EllipticTheta[ 4, 0, x^3]^2 / (EllipticTheta[ 2, Pi/4, x^(1/2)] EllipticTheta[ 2, Pi/4, x^(3/2)]), {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)^3 / (eta(x + A) * eta(x^4 + A) * eta(x^6 + A) * eta(x^12 + A)), n))};
CROSSREFS
KEYWORD
sign
AUTHOR
Michael Somos, Apr 12 2016
STATUS
approved