A246608 Expansion of phi(-q) * phi(-q^4)^4 in powers of q where phi() is a Ramanujan theta function.
1, -2, 0, 0, -6, 16, 0, 0, 8, -50, 0, 0, 16, 80, 0, 0, -38, -96, 0, 0, -16, 160, 0, 0, 48, -242, 0, 0, 64, 240, 0, 0, -56, -288, 0, 0, -150, 400, 0, 0, 112, -384, 0, 0, 112, 496, 0, 0, -112, -674, 0, 0, -80, 560, 0, 0, 160, -672, 0, 0, 192, 880, 0, 0, -294
Offset: 0
Keywords
Examples
G.f. = 1 - 2*q - 6*q^4 + 16*q^5 + 8*q^8 - 50*q^9 + 16*q^12 + 80*q^13 + ...
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
Programs
-
Magma
A := Basis( ModularForms( Gamma0(8), 5/2), 68); A[1] - 2*A[2];
-
Mathematica
a[n_]:= SeriesCoefficient[EllipticTheta[3,0, -q]*EllipticTheta[3,0, -q^4 ]^4, {q, 0, n}]; (* corrected by G. C. Greubel, Mar 15 2018 *)
-
PARI
{a(n) = my(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x + A)^2 * eta(x^4 + A)^8 / (eta(x^2 + A) * eta(x^8 + A)^4), n))};
Comments