OFFSET
0,2
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 phi(q) * phi(q^3)^2 in powers of q where phi() is a Ramanujan theta function.
Expansion of eta(q^2)^5 * eta(q^6)^10 / (eta(q)^2 * eta(q^3)^4 * eta(q^4)^2 * eta(q^12)^4) in powers of q.
Euler transform of period 12 sequence [ 2, -3, 6, -1, 2, -9, 2, -1, 6, -3, 2, -3, ...].
G.f. is a period 1 Fourier series which satisfies f(-1 / (64 t)) = 24^(1/2) (t/i)^(3/2) g(t) where q = exp(2 Pi i t) and g() is the g.f. for A034933.
G.f. theta_3(q) * theta_3(q^3)^2.
EXAMPLE
G.f. = 1 + 2*q + 4*q^3 + 10*q^4 + 4*q^6 + 16*q^7 + 2*q^9 + 8*q^10 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ EllipticTheta[ 3, 0, q] EllipticTheta[ 3, 0, q^3]^2, {q, 0, n}]; (* Michael Somos, Jan 08 2015 *)
PROG
(PARI) {a(n) = if( n<1, n==0, qfrep( [ 1, 0, 0; 0, 3, 0; 0, 0, 3], n)[n] * 2)};
(PARI) {a(n) = local(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x^2 + A)^5 * eta(x^6 + A)^10 / (eta(x + A)^2 * eta(x^3 + A)^4 * eta(x^4 + A)^2 * eta(x^12 + A)^4), n))};
(Magma) A := Basis( ModularForms( Gamma1(12), 3/2), 76); A[1] + 2*A[2] + 4*A[4] + 10*A[5];
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael Somos, Sep 07 2014
STATUS
approved