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 chi(q^3)^3 / (q * chi(q)) + 4 + 4 * q * chi(q) / chi(q^3)^3 in powers of q where chi() is a Ramanujan theta function.
Expansion of eta(q^2)^10 * eta(q^3) * eta(q^9) * eta(q^12) * eta(q^36) / (eta(q)^4 * eta(q^4)^4 * eta(q^6)^2 * eta(q^18)^4) in powers of q.
Euler transform of period 36 sequence [ 4, -6, 3, -2, 4, -5, 4, -2, 2, -6, 4, -2, 4, -6, 3, -2, 4, -2, 4, -2, 3, -6, 4, -2, 4, -6, 2, -2, 4, -5, 4, -2, 3, -6, 4, 0, ...].
a(3*n) = 0 unless n=0. a(n) = A164268(n) unless n=0.
EXAMPLE
G.f. = 1/q + 4 + 4*q - q^2 + 4*q^4 + q^5 + q^8 - 8*q^10 - q^11 - 8*q^13 + ...
MATHEMATICA
eta[x_] := QPochhammer[x]; A164612[n_] := SeriesCoefficient[eta[q^2]^10* eta[q^3]*eta[q^9]*eta[q^12]*eta[q^36]/(eta[q]^4*eta[q^4]^4*eta[q^6]^2 *eta[q^18]^4), {q, 0, n}]; Table[A164612[n], {n, 0, 50}] (* G. C. Greubel, Aug 10 2017 *)
PROG
(PARI) {a(n) = my(A); if( n<-1, 0, n++; A = x * O(x^n); polcoeff( eta(x^2 + A)^10 * eta(x^3 + A) * eta(x^9 + A) * eta(x^12 + A) * eta(x^36 + A) / (eta(x + A)^4 * eta(x^4 + A)^4 * eta(x^6 + A)^2 * eta(x^18 + A)^4), n))};
CROSSREFS
KEYWORD
sign
AUTHOR
Michael Somos, Aug 17 2009
STATUS
approved