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.

A260646 Decimal expansion of Pi^12/12!, the absolute density of the Leech lattice.

Original entry on oeis.org

0, 0, 1, 9, 2, 9, 5, 7, 4, 3, 0, 9, 4, 0, 3, 9, 2, 3, 0, 4, 7, 9, 0, 3, 3, 4, 5, 5, 6, 3, 6, 8, 5, 9, 5, 7, 6, 4, 0, 1, 6, 8, 4, 7, 1, 8, 1, 5, 0, 0, 0, 3, 0, 3, 3, 5, 2, 2, 3, 4, 6, 4, 7, 6, 1, 7, 3, 3, 1, 4, 9, 5, 6, 3, 4, 2, 5, 0, 9, 8, 5, 5, 3, 1, 4, 8, 7
Offset: 0

Views

Author

Felix Fröhlich, Nov 12 2015

Keywords

Examples

			0.001929574309403923047903345563685957640168471815...
		

Crossrefs

Densities of other lattices: A093766, A093825, A222068, A222069, A222070, A222071, A222072.
Related to Leech lattice: A008408, A323282.

Programs

  • Mathematica
    RealDigits[N[Pi^12/12!, 120]]//First (* Michael De Vlieger, Nov 12 2015 *)
  • PARI
    { default(realprecision, 50080); x=Pi^12/12!; for(n=1, 100, d=floor(x); x=(x-d)*10; print1(d, ", ")) }