OFFSET
0,2
LINKS
Index entries for linear recurrences with constant coefficients, signature (6,-15,20,-15,6,-1).
FORMULA
a(n) = A052787(5n) = 120*binomial(5*n, 5).
a(n) = 6*a(n-1)-15*a(n-2)+20*a(n-3)-15*a(n-4)+6*a(n-5)-a(n-6), with a(0)=0, a(1)=120, a(2)=30240, a(3)=360360, a(4)=1860480, a(5)=6375600. - Harvey P. Dale, Aug 29 2012
G.f.: 120*x*(126*x^4+1246*x^3+1506*x^2+246*x+1) / (x-1)^6. - Colin Barker, Sep 13 2014
MATHEMATICA
With[{f=Times@@(5n-Range[0, 4])}, Table[f, {n, 0, 30}]] (* or *) LinearRecurrence[ {6, -15, 20, -15, 6, -1}, {0, 120, 30240, 360360, 1860480, 6375600}, 30] (* Harvey P. Dale, Aug 29 2012 *)
PROG
(PARI) concat(0, Vec(120*x*(126*x^4+1246*x^3+1506*x^2+246*x+1)/(x-1)^6 + O(x^100))) \\ Colin Barker, Sep 13 2014
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Henry Bottomley, May 19 2000
EXTENSIONS
More terms from Colin Barker, Sep 13 2014
STATUS
approved