login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A058496
McKay-Thompson series of class 13B for the Monster group.
2
1, 0, -1, 2, 1, 2, -2, 0, -2, -2, 1, 0, 0, 4, -1, -4, 6, 2, 4, -6, -2, -4, -4, 0, -1, 0, 11, -2, -11, 16, 6, 12, -14, -2, -12, -12, 3, -2, -2, 24, -5, -24, 34, 12, 25, -32, -6, -24, -22, 4, -3, -2, 51, -10, -50, 72, 27, 52, -64, -12, -50, -48, 10, -8, -4, 98
OFFSET
-1,4
LINKS
D. Ford, J. McKay and S. P. Norton, More on replicable functions, Commun. Algebra 22, No. 13, 5175-5193 (1994).
FORMULA
Expansion of 2 + ( eta(q) / eta(q^13) )^2 in powers of q. - Michael Somos, Jul 05 2012
G.f.: 2 + (1/x) * Product_{k>0} ((1 - x^k) / (1 - x^(13*k)))^2. - Michael Somos, Jul 05 2012
a(n) = A133099(n) unless n=0. - Michael Somos, Jul 05 2012
EXAMPLE
T13B = 1/q - q + 2*q^2 + q^3 + 2*q^4 - 2*q^5 - 2*q^7 - 2*q^8 + q^9 + 4*q^12 - ...
MATHEMATICA
QP = QPochhammer; s = 2*q+(QP[q]/QP[q^13])^2+O[q]^70; CoefficientList[s, q] (* Jean-François Alcover, Nov 13 2015, adapted from PARI *)
eta[q_]:= q^(1/24)*QPochhammer[q]; a[n_]:= SeriesCoefficient[2 + (eta[q] /eta[q^13])^2, {q, 0, n}]; Table[a[n], {n, -1, 50}] (* G. C. Greubel, Feb 18 2018 *)
PROG
(PARI) {a(n) = local(A); if( n<-1, 0, n++; A = x*O(x^n); polcoeff( (eta(x + A) / eta(x^13 + A))^2 + 2*x, n))} /* Michael Somos, Jul 05 2012 */
CROSSREFS
KEYWORD
sign
AUTHOR
N. J. A. Sloane, Nov 27 2000
STATUS
approved