A264854 a(n) = n*(n + 1)*(11*n^2 + 11*n - 10)/24.
0, 1, 14, 61, 175, 400, 791, 1414, 2346, 3675, 5500, 7931, 11089, 15106, 20125, 26300, 33796, 42789, 53466, 66025, 80675, 97636, 117139, 139426, 164750, 193375, 225576, 261639, 301861, 346550, 396025, 450616, 510664, 576521, 648550, 727125, 812631, 905464, 1006031
Offset: 0
Links
- OEIS Wiki, Figurate numbers
- Eric Weisstein's World of Mathematics, Pyramidal Number
- Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
Crossrefs
Cf. A004467.
Programs
-
Magma
[n*(n+1)*(11*n^2+11*n-10)/24: n in [0..50]]; // Vincenzo Librandi, Nov 27 2015
-
Mathematica
Table[n (n + 1) (11 n^2 + 11 n - 10)/24, {n, 0, 50}]
-
PARI
a(n)=n*(n+1)*(11*n^2+11*n-10)/24 \\ Charles R Greathouse IV, Jul 26 2016
Formula
G.f.: x*(1 + 9*x + x^2)/(1 - x)^5.
a(n) = Sum_{k = 0..n} A004467(k).
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5). - Vincenzo Librandi, Nov 27 2015
Comments