login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A094362 McKay-Thompson series of class 39C for the Monster group with a(0) = 1. 3
1, 1, 2, 2, 4, 5, 7, 9, 13, 16, 22, 27, 36, 43, 56, 68, 87, 104, 130, 156, 193, 230, 281, 333, 404, 477, 572, 673, 802, 940, 1113, 1299, 1531, 1780, 2085, 2418, 2820, 3259, 3784, 4362, 5047, 5799, 6685, 7662, 8806, 10066, 11532, 13152, 15026, 17098, 19482 (list; graph; refs; listen; history; text; internal format)
OFFSET
-1,3
LINKS
FORMULA
Expansion of (eta(q^3) * eta(q^13)) / (eta(q) * eta(q^39)) in powers of q.
Euler transform of period 39 sequence [ 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, ...].
G.f. A(x) satisfies 0 = f(A(x), A(x^2)) = f(1/A(x), 1/A(x^2)) where f(u, v) = u^3 + v^3 + 2*u*v*(u + v) - u^2*v^2 - u*v.
G.f.: x^-1 * Product_{k>0} (1 - x^(3*k)) * (1 - x^(13*k)) / ((1 - x^k) * (1 - x^(39*k))).
a(n) = A058661(n) unless n=0. Convolution inverse of A094363.
a(n) ~ exp(4*Pi*sqrt(n/39)) / (sqrt(2) * 39^(1/4) * n^(3/4)). - Vaclav Kotesovec, Sep 06 2015
EXAMPLE
1/q + 1 + 2*q + 2*q^2 + 4*q^3 + 5*q^4 + 7*q^5 + 9*q^6 + 13*q^7 + 16*q^8 + 22*q^9 + ...
MATHEMATICA
QP = QPochhammer; s = QP[q^3]*(QP[q^13]/(QP[q]*QP[q^39])) + O[q]^50; CoefficientList[s, q] (* Jean-François Alcover, Nov 15 2015, adapted from PARI *)
PROG
(PARI) {a(n) = local(A); if( n<-1, 0, n++; A = x * O(x^n); polcoeff( eta(x^3 + A) * eta(x^13 + A) / (eta(x + A) * eta(x^39 + A)), n))}
(PARI) {a(n) = local(A, u, v); if( n<-1, 0, A = 1/x; for( k=0, n, u = A + x * O(x^k); v = subst(u, x, x^2); A += x^k * polcoeff( u^3 + v^3 + 2*u*v*(u + v) - u^2*v^2 - u*v, k-5) / 2); polcoeff(A, n))}
CROSSREFS
Cf. A058661. [From R. J. Mathar, Dec 15 2008]
Cf. A094363.
Sequence in context: A240215 A166239 A058661 * A000726 A128663 A206557
KEYWORD
nonn
AUTHOR
Michael Somos, May 03 2004
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 11 15:15 EDT 2024. Contains 372409 sequences. (Running on oeis4.)