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.

A063497 Number of atoms in first n shells of type I hyperfullerene.

Original entry on oeis.org

0, 60, 300, 840, 1800, 3300, 5460, 8400, 12240, 17100, 23100, 30360, 39000, 49140, 60900, 74400, 89760, 107100, 126540, 148200, 172200, 198660, 227700, 259440, 294000, 331500, 372060, 415800, 462840, 513300, 567300, 624960, 686400, 751740, 821100, 894600
Offset: 0

Views

Author

N. J. A. Sloane, Aug 01 2001

Keywords

Comments

The third derivative of the sum of 5th powers: A000539. - Gregory R. Bryant, Jun 14 2013

References

  • T. P. Martin, Shells of atoms, Phys. Reports, 273 (1996), 199-241, eq. (14).

Crossrefs

Cf. A000539.

Programs

  • Magma
    [20*n^3 + 30*n^2 + 10*n : n in [0..50]]; // Wesley Ivan Hurt, May 03 2021
  • Mathematica
    Table[20n^3 + 30n^2 + 10n, {n, 0, 50}] (* David Nacin, Mar 01 2012 *)
  • PARI
    a(n) = { 20*n^3 + 30*n^2 + 10*n } \\ Harry J. Smith, Aug 23 2009
    

Formula

a(n) = 20*n^3 + 30*n^2 + 10*n.
G.f.: 60*x * (1 + x)/(1 - x)^4. - Colin Barker, Mar 01 2012