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.

A153797 7 times octagonal numbers: a(n) = 7*n*(3*n-2).

Original entry on oeis.org

0, 7, 56, 147, 280, 455, 672, 931, 1232, 1575, 1960, 2387, 2856, 3367, 3920, 4515, 5152, 5831, 6552, 7315, 8120, 8967, 9856, 10787, 11760, 12775, 13832, 14931, 16072, 17255, 18480, 19747, 21056, 22407, 23800, 25235, 26712, 28231
Offset: 0

Views

Author

Omar E. Pol, Jan 20 2009

Keywords

Crossrefs

Cf. A000567 (octagonal numbers), A153796, A153808.

Programs

Formula

a(n) = 21*n^2 - 14*n = 7*A000567(n).
a(n) = a(n-1) + 42*n - 35 (with a(0)=0). - Vincenzo Librandi, Nov 27 2010
From G. C. Greubel, Aug 29 2016: (Start)
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3).
G.f.: 7*x*(1 + 5*x)/(1 - x)^3.
E.g.f.: 7*x*(1 + 3*x)*exp(x). (End)