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.

A153448 3 times 12-gonal (or dodecagonal) numbers: a(n) = 3*n*(5*n-4).

Original entry on oeis.org

0, 3, 36, 99, 192, 315, 468, 651, 864, 1107, 1380, 1683, 2016, 2379, 2772, 3195, 3648, 4131, 4644, 5187, 5760, 6363, 6996, 7659, 8352, 9075, 9828, 10611, 11424, 12267, 13140, 14043, 14976, 15939, 16932, 17955, 19008, 20091, 21204
Offset: 0

Views

Author

Omar E. Pol, Dec 26 2008

Keywords

Comments

This sequence is related to A172117 by 3*A172117(n) = n*a(n) - Sum_{i=0..n-1} a(i) and this is the case d=10 in the identity n*(3*n*(d*n - d + 2)/2) - Sum_{k=0..n-1} 3*k*(d*k - d + 2)/2 = n*(n+1)*(2*d*n - 2*d + 3)/2. - Bruno Berselli, Aug 26 2010

Crossrefs

Cf. numbers of the form n*(n*k-k+6)/2, this sequence is the case k=30: see Comments lines of A226492.

Programs

Formula

a(n) = 15*n^2 - 12*n = A051624(n)*3.
a(n) = 30*n + a(n-1) - 27 with n>0, a(0)=0. - Vincenzo Librandi, Aug 03 2010
G.f.: 3*x*(1 + 9*x)/(1-x)^3. - Bruno Berselli, Jan 21 2011
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3); a(0)=0, a(1)=3, a(2)=36. - Harvey P. Dale, Jun 18 2014
E.g.f.: 3*x*(1 + 5*x)*exp(x). - G. C. Greubel, Aug 21 2016
a(n) = (4*n-2)^2 - (n-2)^2. In general, if P(k,n) is the k-th n-gonal number, then (2*k+1)*P(8*k+4,n) = ((3*k+1)*n-2*k)^2 - (k*n-2*k)^2. - Charlie Marion, Jul 29 2021