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.

A023941 Theta series of laminated lattice LAMBDA_19.

Original entry on oeis.org

1, 0, 10668, 317952, 3747430, 24569856, 117503960, 428990464, 1355705388, 3631734784, 9033649880, 19996626432, 42549627976, 82713667584, 157758704304, 279165280256, 490745951846, 808950325248, 1335670719108, 2081937198592, 3270650346456, 4874720530432
Offset: 0

Views

Author

Keywords

Examples

			G.f.: 1 + 10668*q^4 + 317952*q^6 + 3747430*q^8 + 24569856*q^10 + 117503960*q^12 + ...
		

References

  • J. H. Conway and N. J. A. Sloane, "Sphere Packings, Lattices and Groups", Springer-Verlag, p. 174.

Programs

  • Magma
    L:=Lattice("Lambda",19); T := ThetaSeries(L,12); T;
    
  • Magma
    L := Lattice("Lambda",19);
    B := Basis(ThetaSeriesModularFormSpace(L),30);
    S := [1, 0, 10668, 317952, 3747430, 24569856, 117503960, 428990464, 1355705388, 3631734784, 9033649880, 19996626432, 42549627976, 82713667584, 157758704304, 279165280256, 490745951846, 808950325248, 1335670719108, 2081937198592];
    Coefficients(&+[B[i] * S[i] : i in [1..20]]); // Andy Huchala, Jun 17 2021

Extensions

More terms from Andy Huchala, Jun 17 2021