OFFSET
0,2
COMMENTS
Antidiagonal sums of the convolution array A213821. [Clark Kimberling, Jul 04 2012]
REFERENCES
"Supplemento al Periodico di Matematica", Raffaello Giusti Editore (Livorno), May 1908, p. 111 (Problem 923).
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..10000
Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
FORMULA
G.f.: x*(2+3*x+x^2)/(1-x)^5.
a(n) = sum(k*(k*(k-1)+n+1), k=1..n) with n>0 (summation proposed in the Problem 923, see References).
a(0)=0, a(1)=2, a(2)=13, a(3)=46, a(4)=120, a(n)=5*a(n-1)- 10*a(n-2)+ 10*a(n-3)-5*a(n-4)+a(n-5). - Harvey P. Dale, Jul 14 2011
EXAMPLE
For n=5, a(5)=1*(1*0+6)+2*(2*1+6)+3*(3*2+6)+4*(4*3+6)+5*(5*4+6)=260.
MATHEMATICA
Table[n(n+1)(3n^2+5n+4)/12, {n, 0, 40}] (* or *) LinearRecurrence[ {5, -10, 10, -5, 1}, {0, 2, 13, 46, 120}, 40] (* Harvey P. Dale, Jul 14 2011 *)
PROG
(Magma) [n*(n+1)*(3*n^2+5*n+4)/12: n in [0..40]]; // Vincenzo Librandi, Jul 02 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Bruno Berselli, Dec 06 2010
STATUS
approved