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(-x)^2 * psi(x^2) = psi(-x)^4 / psi(x^2) in powers of x where phi(), psi() are Ramanujan theta functions.
Expansion of q^(-1/4) * eta(q)^4 * eta(q^4)^2 / eta(q^2)^3 in powers of q.
Euler transform of period 4 sequence [ -4, -1, -4, -3, ...].
G.f. is a period 1 Fourier series which satisfies f(-1 / (32 t)) = 16 * (t/i)^(3/2) g(t) where q = exp(2 Pi i t) and g() is the g.f. of A246953.
G.f.: Product_{k>0} (1 - x^k)^3 * (1 + x^(2*k))^2 / (1 + x^k).
EXAMPLE
G.f. = 1 - 4*x + 5*x^2 - 4*x^3 + 8*x^4 - 8*x^5 + 5*x^6 - 12*x^7 + 8*x^8 + ...
G.f. = q - 4*q^5 + 5*q^9 - 4*q^13 + 8*q^17 - 8*q^21 + 5*q^25 - 12*q^29 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ EllipticTheta[ 4, 0, x]^2 EllipticTheta[ 2, 0, x]/(2 x^(1/4)), {x, 0, n}]; Table[a[n], {n, 0, 60}]
PROG
(PARI) {a(n) = local(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x + A)^4 * eta(x^4 + A)^2 / eta(x^2 + A)^3, n))};
CROSSREFS
KEYWORD
sign
AUTHOR
Michael Somos, Sep 08 2014
STATUS
approved