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.

A036094 Centered cube numbers: (n+1)^16 + n^16.

Original entry on oeis.org

1, 65537, 43112257, 4338014017, 156882857921, 2973697798081, 36054040477057, 314707907280257, 2134495165562497, 11853020188851841, 55949729863572161, 230833988758608577, 850300868078216257
Offset: 0

Views

Author

Keywords

References

  • B. K. Teo and N. J. A. Sloane, Magic numbers in polygonal and polyhedral clusters, Inorgan. Chem. 24 (1985), 4545-4558.

Programs

  • Magma
    [(n+1)^16+n^16: n in [0..20]]; // Vincenzo Librandi, Aug 28 2011
  • Mathematica
    Total[#]&/@Partition[Range[0,20]^16,2,1] (* Harvey P. Dale, Jun 25 2017 *)