cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A169717 1A coefficients in an expansion of the elliptic genus of the K3 surface.

Original entry on oeis.org

-1, 45, 231, 770, 2277, 5796, 13915, 30843, 65550, 132825, 260568, 494385, 915124, 1651815, 2922381, 5069867, 8650530, 14525742, 24053215, 39299778, 63447087, 101268540, 159963804, 250188435, 387746282, 595726956, 907877355, 1372935090, 2061208710, 3073155810, 4552039296, 6700526910
Offset: 0

Views

Author

N. J. A. Sloane, Apr 19 2010

Keywords

Comments

Related to the Mathieu group M_24, see references.
Coefficients of the mock modular form H_1^(2). - N. J. A. Sloane, Mar 21 2015

Examples

			G.f. = -1 + 45*x + 231*x^2 + 770*x^3 + 2277*x^4 + 5796*x^5 + 13915*x^6 + ...
G.f. = -1/q + 45*q^7 + 231*q^15 + 770*q^23 + 2277*q^31 + 5796*q^39 + ...
		

References

  • Miranda C. N. Cheng, John F. R. Duncan and Jeffrey A Harvey, Umbral moonshine and the Niemeier lattices, Research in the Mathematical Sciences, 2014, 1:3; http://www.resmathsci.com/content/1/1/3
  • Eguchi, T., Ooguri, H., Taormina, A., Yang, S. K., Superconformal algebras and string compactification on manifolds with SU(N) holonomy. Nucl. Phys. B315, 193 (1989). doi:10.1016/0550-3213(89)90454-9
  • Eguchi, T., Taormina, A., Unitary representations of the N=4 superconformal algebra. Phys. Lett. B. 196(1), 75-81 (1987). doi:10.1016/0370-2693(87)91679-0
  • Eguchi, T., Taormina, A., Character formulas for the N=4 superconformal algebra. Phys. Lett. B. 200(3), 315-322 (1988). doi:10.1016/0370-2693(88)90778-2
  • H. Ooguri, Superconformal Symmetry and Geometry of Ricci Flat Kahler Manifolds, Int. J. Mod. Phys. A4 4303, 1989.

Crossrefs

Equals A212301/2.

Formula

a(n) ~ 2/sqrt(8*n - 1) * exp(2*Pi*sqrt(1/2*(n - 1/8))). This formula gives a good estimate of a(n) even at smaller values of n. [From N-E. Fahssi, Apr 26 2010]

Extensions

Added a(0)=-1 and further terms from Cheng et al. Umbral Moonshine paper. - N. J. A. Sloane, Mar 21 2015

A212312 4 times coefficients of the twisted K3 elliptic genus attached to the conjugacy class 7A or 7B (7AB) in the Mathieu group M_24.

Original entry on oeis.org

-1, 213, 4767, 52682, 627573, 4682412, 53313931, 341278995, 3421674678, 24687536097, 214728131688, 1291490582217, 14602976386348, 80718169058895, 691486905294549, 5191979939244635, 44020035323951778, 245857487857551822, 2489942402834854279, 13633673140696254618
Offset: 1

Views

Author

Charles R Greathouse IV and John F. R. Duncan, Aug 02 2012

Keywords

Crossrefs

Other conjugacy classes: A212301-A212320.

Programs

  • PARI
    F22(q, prec)={
        sum(s=1,min(prec-1,sqrt(2*prec)-1/2),
            my(t=0);
            forstep(r=s+1,2*prec\s,2,
                t+=(-1)^r*q^(r*s/2)
            );
            s*t
        )
    };
    list(n)={
        my(q='q+O('q^(n+1)),e=eta(q),f=F22(q,n),ser);
        ser=(6*sum(k=1, n, k*q^k/(1-q^k))+6*f-7*q*log(eta(7*q)/e)'-1/4)/e^3;
        Vec(4*ser)
    };
Showing 1-2 of 2 results.