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 - (psi(x^6) / psi(x) - psi(x^6) / psi(-x)) / (2 * x) in powers of x^2 where psi() is a Ramanujan theta function.
Euler transform of period 48 sequence [ 2, 1, 2, 2, 1, 1, 2, 1, 3, 2, 1, 1, 1, 1, 3, 1, 2, 0, 1, 2, 2, 2, 2, 0, 2, 2, 2, 2, 1, 0, 2, 1, 3, 1, 1, 1, 1, 2, 3, 1, 2, 1, 1, 2, 2, 1, 2, 0, ...].
a(n) ~ exp(Pi*sqrt(n)) / (2^(7/2) * sqrt(3) * n^(3/4)). - Vaclav Kotesovec, Mar 31 2018
EXAMPLE
G.f. = 1 + 2*x + 4*x^2 + 8*x^3 + 15*x^4 + 25*x^5 + 42*x^6 + 68*x^7 + ...
G.f. = q^13 + 2*q^29 + 4*q^45 + 8*q^61 + 15*q^77 + 25*q^93 + 42*q^109 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ - x^(-5/8) EllipticTheta[ 2, 0, x^3] / EllipticTheta[ 2, 0, x^(1/2)], {x, 0, 2 n + 1}];
PROG
(PARI) {a(n) = my(A); if( n<0, 0, n = 2*n + 1; A = x * O(x^n); polcoeff( - eta(x + A) * eta(x^12 + A)^2 / (eta(x^2 + A)^2 * eta(x^6 + A)), n))};
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael Somos, Oct 06 2015
STATUS
approved