OFFSET
0,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
EXAMPLE
1 + 276*x + 11178*x^2 + 177400*x^3 + 1612875*x^4 + 10131156*x^5 + ...
q^3 + 276*q^5 + 11178*q^7 + 177400*q^9 + 1612875*q^11 + 10131156*q^13 + ...
MATHEMATICA
QP:= Pochhammer; a[n_]:= SeriesCoefficient[(QP[q, q])^24*(QP[-q^(1/2), q^(1/2)]^24 + QP[q^(1/2), -q^(1/2)]^24)/2, {q, 0, n}]; Table[a[n], {n, 0, 50}] (* G. C. Greubel, Apr 04 2018 *)
PROG
(PARI) {a(n) = local(A); if( n<0, 0, n *= 2; A = x * O(x^n); polcoeff( (eta(x^2 + A)^2 / eta(x + A))^24, n))}
(PARI) {a(n) = if( n<0, 0, n = 2*n + 3; (sigma(n, 11) - polcoeff( x * eta(x + x * O(x^n))^24, n)) / 176896 )}
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael Somos, Aug 15 2010
STATUS
approved