OFFSET
-1,2
COMMENTS
LINKS
G. C. Greubel, Table of n, a(n) for n = -1..1000
Michael Somos, Introduction to Ramanujan theta functions
Eric Weisstein's World of Mathematics, Ramanujan Theta Functions
FORMULA
Expansion of 1/q * f(q) * f(q^5) / (phi(-q) * psi(q^10)) in powers of q where f(), phi(), psi() are Ramanujan theta functions.
Euler transform of period 20 sequence [3, -1, 3, 0, 4, -1, 3, 0, 3, -4, 3, 0, 3, -1, 4, 0, 3, -1, 3, 0, ...].
G.f. is a period 1 Fourier series which satisfies f(-1 / (20 t)) = f(t) where q = exp(2 Pi i t).
Expansion of (eta(q^2) * eta(q^10))^4/(eta(q^4)*eta(q^5)*(eta(q)* eta(q^20))^3) in powers of q. - G. C. Greubel, Mar 20 2018
a(n) ~ exp(2*Pi*sqrt(n/5)) / (2*5^(1/4)*n^(3/4)). - Vaclav Kotesovec, Mar 21 2018
EXAMPLE
G.f. = q^-1 + 3 + 5*q + 10*q^2 + 18*q^3 + 30*q^4 + 51*q^5 + 80*q^6 + 124*q^7 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ 1/q QPochhammer[ q^10, q^20]^2 QPochhammer[-q, q]^2 QPochhammer[-q, q^2] QPochhammer[-q^5, q^10], {q, 0, n}];
eta[q_]:= q^(1/24)*QPochhammer[q]; a[n_]:= SeriesCoefficient[(eta[q^2]* eta[q^10])^4/(eta[q^4]*eta[q^5]*(eta[q]*eta[q^20])^3), {q, 0, n}]; Table[a[n], {n, 0, 50}] (* G. C. Greubel, Mar 20 2018 *)
PROG
(PARI) {a(n) = my(A); if( n<-1, 0, n++; A = x * O(x^n); polcoeff( eta(x^2 + A)^4 * eta(x^10 + A)^4 / (eta(x + A)^3 * eta(x^4 + A) * eta(x^5 + A) * eta(x^20 + A)^3), n))};
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael Somos, Jan 12 2018
STATUS
approved