A062025 a(n) = n*(13*n^2 - 7)/6.
0, 1, 15, 55, 134, 265, 461, 735, 1100, 1569, 2155, 2871, 3730, 4745, 5929, 7295, 8856, 10625, 12615, 14839, 17310, 20041, 23045, 26335, 29924, 33825, 38051, 42615, 47530, 52809, 58465, 64511, 70960, 77825, 85119, 92855, 101046, 109705, 118845, 128479, 138620, 149281
Offset: 0
Links
- Harry J. Smith, Table of n, a(n) for n = 0..1000
- T. P. Martin, Shells of atoms, Phys. Reports, 273 (1996), 199-241, eq. (11).
- Index entries for linear recurrences with constant coefficients, signature (4, -6, 4, -1).
Crossrefs
Programs
-
Mathematica
Table[n(13n^2-7)/6,{n,0,80}] (* Vladimir Joseph Stephan Orlovsky, Apr 18 2011 *)
-
PARI
a(n) = n*(13*n^2 - 7)/6 \\ Harry J. Smith, Jul 29 2009
Formula
From G. C. Greubel, Sep 01 2017: (Start)
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4).
G.f.: (x + 11*x^2 + x^3)/(1 - x)^4.
E.g.f.: (x/6)*(6 + 39*x + 13*x^2)*exp(x). (End)