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.

A152777 7 times heptagonal numbers: a(n) = 7*n*(5*n-3)/2.

Original entry on oeis.org

0, 7, 49, 126, 238, 385, 567, 784, 1036, 1323, 1645, 2002, 2394, 2821, 3283, 3780, 4312, 4879, 5481, 6118, 6790, 7497, 8239, 9016, 9828, 10675, 11557, 12474, 13426, 14413, 15435, 16492, 17584, 18711, 19873, 21070, 22302, 23569, 24871, 26208, 27580, 28987, 30429
Offset: 0

Views

Author

Omar E. Pol, Dec 13 2008

Keywords

Comments

7 times 7-gonal numbers.

Crossrefs

Cf. A000566.

Programs

Formula

a(n) = (35*n^2 - 21*n)/2 = 7*A000566(n).
a(n) = a(n-1) + 35*n - 28 (with a(0)=0). - Vincenzo Librandi, Dec 15 2010
From Elmo R. Oliveira, Dec 24 2024: (Start)
G.f.: 7*x*(1 + 4*x)/(1 - x)^3.
E.g.f.: 7*exp(x)*x*(2 + 5*x)/2.
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3) for n >= 3. (End)