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.

A140678 a(n) = n*(3*n + 10).

Original entry on oeis.org

0, 13, 32, 57, 88, 125, 168, 217, 272, 333, 400, 473, 552, 637, 728, 825, 928, 1037, 1152, 1273, 1400, 1533, 1672, 1817, 1968, 2125, 2288, 2457, 2632, 2813, 3000, 3193, 3392, 3597, 3808, 4025, 4248, 4477, 4712, 4953, 5200, 5453, 5712
Offset: 0

Views

Author

Omar E. Pol, May 22 2008

Keywords

Crossrefs

Programs

  • Mathematica
    Table[n (3 n + 10), {n, 0, 50}] (* or *) LinearRecurrence[{3, -3, 1}, {0, 13, 32}, 50] (* Harvey P. Dale, Jun 05 2012 *)
  • PARI
    a(n)=n*(3*n+10) \\ Charles R Greathouse IV, Oct 07 2015

Formula

a(n) = 3*n^2 + 10*n.
a(n) = 6*n + a(n-1) + 7, with a(0)=0. - Vincenzo Librandi, Aug 03 2010
G.f.: x*(13 - 7*x)/(1 - x)^3. - Arkadiusz Wesolowski, Dec 24 2011
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3), with a(0)=0, a(1)=13, a(2)=32. - Harvey P. Dale, Jun 05 2012
E.g.f.: (3*x^2 + 13*x)*exp(x). - G. C. Greubel, Jul 20 2017