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!)
A093067 McKay-Thompson series of class 24f for the Monster group with a(0) = -2. 2
1, -2, -1, 4, -3, -2, 11, -6, -11, 20, -15, -16, 43, -24, -32, 76, -48, -58, 144, -84, -97, 238, -144, -172, 398, -234, -279, 636, -372, -428, 1012, -582, -678, 1564, -906, -1028, 2389, -1362, -1576, 3560, -2046, -2320, 5290, -2988, -3407, 7700, -4371, -4928 (list; graph; refs; listen; history; text; internal format)
OFFSET
-1,2
LINKS
FORMULA
Expansion of (eta(q) * eta(q^5) / (eta(q^3) * eta(q^15)))^2 in powers of q.
Euler transform of period 15 sequence [ -2, -2, 0, -2, -4, 0, -2, -2, 0, -4, -2, 0, -2, -2, 0, ...].
G.f. A(x) satisfies 0 = f(A(x), A(x^2)) where f(u, v) = u^3 + v^3 - 4*u*v * (u + v) - u^2*v^2 - 9*u*v.
a(n) = A058589(n) unless n=0.
EXAMPLE
G.f. = 1/q - 2 - q + 4*q^2 - 3*q^3 - 2*q^4 + 11*q^5 - 6*q^6 - 11*q^7 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ q^(-1) (QPochhammer[ q] QPochhammer[ q^5] / (QPochhammer[q^3] QPochhammer[q^15]))^2, {q, 0, n}] (* Michael Somos, Oct 23 2013 *)
PROG
(PARI) {a(n) = local(A); if( n<-1, 0, n++; A = x*O(x^n); polcoeff( (eta(x + A) * eta(x^5 + A) / (eta(x^3 + A) * eta(x^15 + A)))^2, 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 - 4*u*v*(u + v) - u^2*v^2 - 9*u*v, k-5) / 2); polcoeff(A, n))}
CROSSREFS
Cf. A058509.
Sequence in context: A124731 A210658 A143122 * A098122 A159931 A159755
KEYWORD
sign
AUTHOR
Michael Somos, Mar 17 2004
EXTENSIONS
Edited for better readability and more coherence. - Michael Somos, Oct 23 2013
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 9 14:31 EDT 2024. Contains 372351 sequences. (Running on oeis4.)