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 q^(-5/24) * eta(q)^4 * eta(q^10) / (eta(q^2)^2 * eta(q^5)) in powers of q.
Euler transform of period 10 sequence [ -4, -2, -4, -2, -3, -2, -4, -2, -4, -2, ...].
EXAMPLE
G.f. = 1 - 4*x + 4*x^2 + 4*x^4 - 7*x^5 - 4*x^6 + 4*x^7 + 4*x^8 + ...
G.f. = q^5 - 4*q^29 + 4*q^53 + 4*q^101 - 7*q^125 - 4*q^149 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ EllipticTheta[ 4, 0, x]^2 / QPochhammer[ x^5, x^10], {x, 0, n}];
PROG
(PARI) {a(n) = my(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x + A)^4 * eta(x^10 + A) / (eta(x^2 + A)^2 * eta(x^5 + A)), n))};
(PARI) lista(nn) = {q='q+O('q^nn); Vec(eta(q)^4*eta(q^10)/(eta(q^2)^2*eta(q^5)))} \\ Altug Alkan, Mar 21 2018
CROSSREFS
KEYWORD
sign
AUTHOR
Michael Somos, Dec 10 2016
STATUS
approved