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.

A244635 a(n) = 29*n^2.

Original entry on oeis.org

0, 29, 116, 261, 464, 725, 1044, 1421, 1856, 2349, 2900, 3509, 4176, 4901, 5684, 6525, 7424, 8381, 9396, 10469, 11600, 12789, 14036, 15341, 16704, 18125, 19604, 21141, 22736, 24389, 26100, 27869, 29696, 31581, 33524, 35525, 37584, 39701, 41876, 44109, 46400, 48749
Offset: 0

Views

Author

Vincenzo Librandi, Jul 03 2014

Keywords

Crossrefs

Cf. similar sequences listed in A244630.

Programs

  • Magma
    [29*n^2: n in [0..40]];
    
  • Mathematica
    Table[29 n^2, {n, 0, 40}]
  • PARI
    a(n)=29*n^2 \\ Charles R Greathouse IV, Jun 17 2017

Formula

G.f.: 29*x*(1 + x)/(1 - x)^3. [corrected by Bruno Berselli, Jul 03 2014]
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3) for n > 2.
a(n) = 29*A000290(n). - Omar E. Pol, Jul 03 2014
From Elmo R. Oliveira, Dec 01 2024: (Start)
E.g.f.: 29*x*(1 + x)*exp(x).
a(n) = n*A195819(n). (End)