OFFSET
0,2
COMMENTS
For n >= 4, this is dot_product(n,n-1,...2,1)*(4,5,...,n,1,2,3).
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (4,-6,4,-1).
FORMULA
G.f.: x*(-2 +9*x -6*x^2)/(1-x)^4. - Colin Barker, Sep 17 2012
E.g.f.: x*(-12 +15*x +x^2)*exp(x)/6. - G. C. Greubel, Oct 30 2019
MAPLE
seq(n*(n^2+12*n-25)/6, n=0..60); # G. C. Greubel, Oct 30 2019
MATHEMATICA
CoefficientList[Series[x(-2 +9x -6x^2)/(1-x)^4, {x, 0, 60}], x] (* Vincenzo Librandi, Oct 17 2013 *)
Table[n (n^2+12n-25)/6, {n, 0, 50}] (* or *) LinearRecurrence[{4, -6, 4, -1}, {0, -2, 1, 10}, 50] (* Harvey P. Dale, Jan 28 2020 *)
PROG
(Magma) [n*(n^2+12*n-25)/6: n in [0..60]]; // Vincenzo Librandi, Oct 17 2013
(PARI) a(n)=n*(n^2+12*n-25)/6 \\ Charles R Greathouse IV, Oct 07 2015
(Sage) [n*(n^2+12*n-25)/6 for n in (0..60)] # G. C. Greubel, Oct 30 2019
(GAP) List([0..60], n-> n*(n^2+12*n-25)/6); # G. C. Greubel, Oct 30 2019
CROSSREFS
KEYWORD
sign,easy
AUTHOR
EXTENSIONS
New definition from Ralf Stephan, Apr 30 2004
Edited by N. J. A. Sloane, Dec 13 2008
STATUS
approved