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^(-1/2) * (eta(q^2)^2 * eta(q^6)^2 / (eta(q) * eta(q^3)^3))^2 in powers of q.
Euler transform of period 6 sequence [ 2, -2, 8, -2, 2, 0, ...].
-2 * a(n) = A262930(2*n + 1).
EXAMPLE
G.f. = 1 + 2*x + x^2 + 8*x^3 + 14*x^4 + 6*x^5 + 38*x^6 + 60*x^7 + 23*x^8 + ...
G.f. = q + 2*q^3 + q^5 + 8*q^7 + 14*q^9 + 6*q^11 + 38*q^13 + 60*q^15 + 23*x^17 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ (EllipticTheta[ 2, 0, x^(1/2)] EllipticTheta[ 2, 0, x^(3/2)] / (4 QPochhammer[ x^3]^2))^2 / x, {x, 0, n}];
PROG
(PARI) {a(n) = my(A); if( n<0, 0, A = x * O(x^n); polcoeff( (eta(x^2 + A)^2 * eta(x^6 + A)^2 / (eta(x + A) * eta(x^3 + A)^3))^2, n))};
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael Somos, Oct 19 2015
STATUS
approved