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.

A015687 Expansion of e.g.f. theta_3^(-11/2).

Original entry on oeis.org

1, -11, 143, -2145, 36201, -675675, 13777335, -304008705, 7204902705, -182276917515, 4897582264575, -139156370978625, 4165687398497625, -130958825020098075, 4311426211189071975, -148272233495263502625
Offset: 0

Views

Author

Keywords

References

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

Crossrefs

Programs

  • Mathematica
    nmax = 25; CoefficientList[Series[EllipticTheta[3, 0, x]^(-11/2), {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Oct 23 2018 *)
  • PARI
    default(seriesprecision,16)
    th3=1+Ser(sum(i=1,sqrtint(default(seriesprecision)),2*'x^i^2))
    Vec(serlaplace(th3^(-11/2))) \\ Charles R Greathouse IV, Aug 17 2017