OFFSET
0,4
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^(-19/24) * eta(q^2) * eta(q^6)^3 / eta(q) in powers of q.
Euler transform of period 6 sequence [ 1, 0, 1, 0, 1, -3, ...].
3 * a(n) = A008443(3*n + 2).
EXAMPLE
1 + x + x^2 + 2*x^3 + 2*x^4 + 3*x^5 + x^6 + 2*x^7 + 3*x^8 + 2*x^9 + 4*x^10 + ...
q^19 + q^43 + q^67 + 2*q^91 + 2*q^115 + 3*q^139 + q^163 + 2*q^187 + 3*q^211 + ...
MATHEMATICA
A181648[n_]:= SeriesCoefficient[QPochhammer[q^2, q^2]*QPochhammer[q^6, q^6]^3/QPochhammer[q, q], {q, 0, n}]; Table[A181648[n], {n, 0, 50}] (* G. C. Greubel, Dec 24 2017 *)
PROG
(PARI) {a(n) = local(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x^+2 + A) * eta(x^6 + A)^3 / eta(x + A), n))}
CROSSREFS
KEYWORD
nonn,changed
AUTHOR
Michael Somos, Jun 22 2012
STATUS
approved