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.

A090197 a(n) = n^3 + 6*n^2 + 6*n + 1.

Original entry on oeis.org

1, 14, 45, 100, 185, 306, 469, 680, 945, 1270, 1661, 2124, 2665, 3290, 4005, 4816, 5729, 6750, 7885, 9140, 10521, 12034, 13685, 15480, 17425, 19526, 21789, 24220, 26825, 29610, 32581, 35744, 39105, 42670, 46445, 50436, 54649, 59090, 63765
Offset: 0

Views

Author

Philippe Deléham, Jan 22 2004

Keywords

Comments

N(4,n) where N(4,x) is the 4th Narayana polynomial.
Number of corona of a triangle of order n surrounded by triangles of order n. - Craig Knecht, Oct 30 2024

Crossrefs

For N(3,n), see A028387.

Programs

  • Magma
    I:=[1, 14, 45, 100]; [n le 4 select I[n] else 4*Self(n-1)-6*Self(n-2)+4*Self(n-3)-Self(n-4): n in [1..50]]; // Vincenzo Librandi, Jun 24 2012
  • Mathematica
    LinearRecurrence[{4,-6, 4, -1},{1,14,45,100},40] (* Vincenzo Librandi, Jun 24 2012 *)
  • PARI
    n^3+6*n^2+6*n+1 \\ Charles R Greathouse IV, Jan 17 2012
    

Formula

a(n) = N(4,n) = Sum_{k>0} A001263(4, k)*n^(k-1) = (n+1)*(n^2+5*n+1).
G.f.: (1 + 10*x - 5*x^2) / (x-1)^4. - R. J. Mathar, Sep 07 2011
a(n) + A016921(n+1) = (n+2)^3. - Bruno Berselli, Jun 24 2012
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4). - Vincenzo Librandi, Jun 24 2012
E.g.f.: exp(x)*(1 + 13*x + 9*x^2 + x^3). - Stefano Spezia, Nov 22 2024