A172085 a(n) = n*(27*n^3 + 22*n^2 - 21*n - 16)/12.
0, 1, 41, 212, 660, 1585, 3241, 5936, 10032, 15945, 24145, 35156, 49556, 67977, 91105, 119680, 154496, 196401, 246297, 305140, 373940, 453761, 545721, 650992, 770800, 906425, 1059201, 1230516, 1421812, 1634585, 1870385, 2130816, 2417536
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..1000
- B. Berselli, A description of the recursive method in Comments lines: website Matem@ticamente (in Italian).
- Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
Crossrefs
Cf. A172082.
Programs
-
GAP
List([0..40], n-> n*(n+1)*(27*n^2 -5*n -16)/12); # G. C. Greubel, Aug 30 2019
-
Magma
[n*(n+1)*(27*n^2-5*n-16)/12: n in [0..40]]; // Vincenzo Librandi, Jan 02 2014
-
Maple
seq(n*(n+1)*(27*n^2 -5*n -16)/12, n=0..40); # G. C. Greubel, Aug 30 2019
-
Mathematica
CoefficientList[Series[x(1 +36x +17x^2)/(1-x)^5, {x, 0, 40}], x] (* Vincenzo Librandi, Jan 02 2014 *) Table[n*(n+1)*(27*n^2-5*n-16)/12, {n,0,40}] (* G. C. Greubel, Aug 30 2019 *)
-
PARI
vector(40, n, m=n-1; n*m*(27*m^2 -5*m -16)/12) \\ G. C. Greubel, Aug 30 2019
-
Sage
[n*(n+1)*(27*n^2 -5*n -16)/12 for n in (0..40)] # G. C. Greubel, Aug 30 2019
Formula
a(n) = n*(n+1)*(27*n^2 -5*n -16)/12.
From Bruno Berselli, Jan 28 2011: (Start)
G.f.: x*(1 +36*x +17*x^2)/(1-x)^5.
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5). (End)
E.g.f.: x*(12 + 234*x + 184*x^2 + 27*x^3)*exp(x)/12. - G. C. Greubel, Aug 30 2019
Extensions
Librandi's contribution restored and rewritten from Bruno Berselli, Feb 29 2012
Comments