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.

A362879 Theta series of 19-dimensional lattice Kappa_19.

Original entry on oeis.org

1, 0, 9396, 284528, 3309660, 21996036, 103632480, 384538752, 1195104618, 3253783500, 7971340896, 17905302720, 37530681590, 74139276672, 139067432280, 250102136592, 433070833500, 724358442744, 1178016364548, 1866143480400, 2883345017508, 4367172766500
Offset: 0

Views

Author

Andy Huchala, May 08 2023

Keywords

Comments

Theta series is an element of the space of modular forms on Gamma_0(12) of weight 19/2 and dimension 19 over the integers.

Examples

			G.f. = 1 + 9396*q^4 + 284528*q^6 + ...
		

References

  • J. H. Conway and N. J. A. Sloane, Sphere Packings, Lattices and Groups, Chap. 6.

Crossrefs

Programs

  • Magma
    prec := 30;
    coeffs := [1, 0, 9396, 284528, 3309660, 21996036, 103632480, 384538752, 1195104618, 3253783500, 7971340896, 17905302720, 37530681590, 74139276672, 139067432280, 250102136592, 433070833500, 724358442744, 1178016364548];
    ls := [4, 2, 4, 0, -2, 4, 0, -2, 0, 4, 0, 0, -2, 0, 4, -2, -2, 0, 0, 0, 4, -2, -1, 1, 0, 0, 0, 4, -2, -1, 0, -1, 1, 2, 2, 4, -2, -2, 0, 1, 1, 2, 2, 2, 4, -2, 0, -2, 0, 1, 1, 0, 0, 0, 4, 1, 1, 0, 0, 0, -2, 0, -1, -1, -2, 4, -2, -1, 0, 0, 0, 1, 1, 1, 1, 1, -2, 4, 0, -1, 1, 1, 0, -1, 1, 0, 0, -1, 1, -1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 4, 0, -1, 0, 0, 1, 1, 0, 1, 1, -1, 0, 0, 1, -1, 4, 0, 0, 1, 0, -1, 0, 1, 0, 0, 0, -1, 0, 0, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 1, 1, 0, 1, 4, 1, 0, -1, 1, 1, 0, -1, -1, 0, 0, 0, 0, 0, 0, 1, -1, 0, 1, 4];
    S := SymmetricMatrix(ls);
    L := LatticeWithGram(S);
    M := ThetaSeriesModularFormSpace(L);
    B := Basis(M,prec);
    Coefficients(&+[coeffs[i]*B[i] :i in [1..19]]);