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 eta(q^2)^7 / (eta(q)^2 * eta(q^4) * eta(q^8)) in powers of q.
Euler transform of period 8 sequence [ 2, -5, 2, -4, 2, -5, 2, -3, ...].
Empirical: Sum_{n>=0} a(n) / exp(n*Pi) = (1/8) * 2^(5/16) * Gamma(5/8)^3 * (2+sqrt(2))^(3/2) / (2-sqrt(2))^(1/4) / Gamma(7/8)^3 / Pi^(3/4) = A388864. - Simon Plouffe, Sep 21 2025
EXAMPLE
G.f. = 1 + 2*q - 2*q^2 - 4*q^3 - 4*q^5 + 8*q^7 - 2*q^8 + 6*q^9 + 8*q^10 + ...
MATHEMATICA
a[n_]:= SeriesCoefficient[EllipticTheta[3, 0, q]* EllipticTheta[3, 0, -q^2]*EllipticTheta[3, 0, -q^4], {q, 0, n}]; Table[a[n], {n, 0, 50}] (* G. C. Greubel, Nov 30 2017 *)
PROG
(PARI) {a(n) = local(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x^2 + A)^7 / (eta(x + A)^2 * eta(x^4 + A) * eta(x^8 + A)), n))};
CROSSREFS
KEYWORD
sign
AUTHOR
Michael Somos, Sep 03 2014
STATUS
approved
