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.

A027604 a(n) = n^3 + (n+1)^3 + (n+2)^3 + (n+3)^3 + (n+4)^3.

Original entry on oeis.org

100, 225, 440, 775, 1260, 1925, 2800, 3915, 5300, 6985, 9000, 11375, 14140, 17325, 20960, 25075, 29700, 34865, 40600, 46935, 53900, 61525, 69840, 78875, 88660, 99225, 110600, 122815, 135900, 149885, 164800, 180675, 197540
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

Formula

a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - 1*a(n-4) for n >= 4.
From Bruno Berselli, Jan 24 2011: (Start)
G.f.: 5*(20 - 35*x + 28*x^2 - 7*x^3)/(1-x)^4.
a(n) = 5*n^3 + 30*n^2 + 90*n + 100 = A008587(n+2)*A114949(n+2). (End)
E.g.f.: 5*(4+x)*(5+5*x+x^2)*exp(x). - G. C. Greubel, Aug 24 2022