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.

A036087 Centered cube numbers: a(n) = (n+1)^9 + n^9.

Original entry on oeis.org

1, 513, 20195, 281827, 2215269, 12030821, 50431303, 174571335, 521638217, 1387420489, 3357947691, 7517728043, 15764279725, 31265546157, 59104406159, 107162836111, 187307353233, 316947166865
Offset: 0

Views

Author

Keywords

Comments

Never prime nor semiprime, as a(n) = (2n+1) * (n^2 + n + 1) * (n^6 + 3n^5 + 12n^4 + 19n^3 + 15n^2 + 6n + 1). - Jonathan Vos Post, Aug 26 2011
Triprimes (A014612) if n = 2, 5, 6, 14, 21, 75, 90, ... - R. J. Mathar, Aug 27 2011

References

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

Crossrefs

Programs

  • Magma
    [(n+1)^9+n^9: n in [0..20]]; // Vincenzo Librandi, Aug 27 2011
    
  • Mathematica
    Total/@Partition[Range[0,20]^9,2,1] (* Harvey P. Dale, Jan 31 2015 *)
    LinearRecurrence[{10,-45,120,-210,252,-210,120,-45,10,-1},{1,513,20195,281827,2215269,12030821,50431303,174571335,521638217,1387420489},20] (* Harvey P. Dale, Jan 21 2023 *)
  • PARI
    a(n)=(n+1)^9+n^9 \\ Charles R Greathouse IV, Jan 31 2017

Formula

a(n) = A001017(n+1) + A001017(n).
G.f.: (1+x)*(x^8 + 502*x^7 + 14608*x^6 + 88234*x^5 + 156190*x^4 + 88234*x^3 + 14608*x^2 + 502*x + 1) / (x-1)^10. - R. J. Mathar, Aug 27 2011