OFFSET
1,2
LINKS
Index entries for linear recurrences with constant coefficients, signature (6, -12, 11, -5, 1).
FORMULA
G.f.: x^2(3-3x+x^2)/((1-x)^2*(1-4x+3x^2-x^3)). a(n)=6*a(n-1)-12*a(n-2)+11*a(n-3)-5*a(n-4)+a(n-5). [From R. J. Mathar, Dec 15 2008]
MATHEMATICA
lst={}; a=b=c=0; Do[c+=n+a; b+=n+c; a+=n+b; AppendTo[lst, a], {n, 0, 2*4!}]; lst
LinearRecurrence[{6, -12, 11, -5, 1}, {0, 3, 15, 55, 183}, 30] (* Harvey P. Dale, Dec 11 2014 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Joseph Stephan Orlovsky, Dec 14 2008
STATUS
approved