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.

A140689 a(n) = n*(3*n + 20).

Original entry on oeis.org

0, 23, 52, 87, 128, 175, 228, 287, 352, 423, 500, 583, 672, 767, 868, 975, 1088, 1207, 1332, 1463, 1600, 1743, 1892, 2047, 2208, 2375, 2548, 2727, 2912, 3103, 3300, 3503, 3712, 3927, 4148, 4375, 4608, 4847, 5092, 5343, 5600, 5863
Offset: 0

Views

Author

Omar E. Pol, May 22 2008

Keywords

Crossrefs

Programs

Formula

a(n) = 3*n^2 + 20*n.
a(n) = a(n-1) + 6*n + 17 (with a(0)=0). - Vincenzo Librandi, Dec 15 2010
a(n) = 3*a(n-1)-3*a(n-2)+a(n-3), with a(0)=0, a(1)=23, a(2)=52. - Harvey P. Dale, Apr 29 2016
From G. C. Greubel, Jul 21 2017: (Start)
G.f.: x*(23 - 17*x)/(1 - x)^3.
E.g.f.: x*(3*x + 23)*exp(x). (End)