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.

A153784 4 times heptagonal numbers: a(n) = 2*n*(5*n-3).

Original entry on oeis.org

0, 4, 28, 72, 136, 220, 324, 448, 592, 756, 940, 1144, 1368, 1612, 1876, 2160, 2464, 2788, 3132, 3496, 3880, 4284, 4708, 5152, 5616, 6100, 6604, 7128, 7672, 8236, 8820, 9424, 10048, 10692, 11356, 12040, 12744, 13468, 14212, 14976, 15760, 16564, 17388, 18232, 19096
Offset: 0

Views

Author

Omar E. Pol, Jan 02 2009

Keywords

Comments

Sequence found by reading the line from 0, in the direction 0, 4, ..., in the square spiral whose vertices are the generalized heptagonal numbers A085787. - Omar E. Pol, Jul 18 2012

Crossrefs

Programs

Formula

a(n) = 10*n^2 - 6*n = 4*A000566(n) = 2*A135706(n).
a(n) = 20*n + a(n-1) - 16 (with a(0)=0). - Vincenzo Librandi, Aug 03 2010
a(n) = A087348(n) - 1, n >= 1. - Omar E. Pol, Jul 18 2012
a(0)=0, a(1)=4, a(2)=28, a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3). - Harvey P. Dale, Mar 19 2015
From Elmo R. Oliveira, Dec 15 2024: (Start)
G.f.: 4*x*(1 + 4*x)/(1 - x)^3.
E.g.f.: 2*exp(x)*x*(2 + 5*x).
a(n) = A152745(n) - n. (End)