OFFSET
0,4
COMMENTS
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..5000
FORMULA
Expansion of q^(-1/3) * eta(q^3)^2 * eta(q^9)^3 / eta(q) in powers of q.
Euler transform of period 9 sequence [1, 1, -1, 1, 1, -1, 1, 1, -4, ...].
EXAMPLE
G.f. = x + x^2 + 2*x^3 + x^4 + 3*x^5 + 3*x^6 + 4*x^7 + 4*x^8 + 6*x^9 + ...
G.f. = q^4 + q^7 + 2*q^10 + q^13 + 3*q^16 + 3*q^19 + 4*q^22 + 4*q^25 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ x QPochhammer[ x^3]^2 QPochhammer[ x^9]^3 / QPochhammer[ x], {x, 0, n}];
PROG
(PARI) {a(n) = if( n<1, 0, n--; my(A = x * O(x^n)); polcoeff( eta(x^3 + A)^2 * eta(x^9 + A)^3 / eta(x + A), n))};
(Magma) Basis( ModularForms( Gamma0(27), 2), 210)[5];
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael Somos, Feb 19 2017
STATUS
approved