login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A293615
a(n) = Pochhammer(n, 5) / 2.
5
0, 60, 360, 1260, 3360, 7560, 15120, 27720, 47520, 77220, 120120, 180180, 262080, 371280, 514080, 697680, 930240, 1220940, 1580040, 2018940, 2550240, 3187800, 3946800, 4843800, 5896800, 7125300, 8550360, 10194660, 12082560, 14240160, 16695360, 19477920, 22619520
OFFSET
0,2
FORMULA
a(n) = n*(n+1)*(n+2)*Stirling2(4 + n, 3 + n).
-a(-n-4) = a(n) for n >= 0.
a(n) = 60*A000389(n+4). - G. C. Greubel, Nov 20 2017
From Colin Barker, Nov 21 2017: (Start)
G.f.: 60*x / (1 - x)^6.
a(n) = (1/2)*(n*(1 + n)*(2 + n)*(3 + n)*(4 + n)).
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) for n>5.
(End)
MAPLE
A293615 := n -> pochhammer(n, 5)/2:
seq(A293615(n), n=0..11);
MATHEMATICA
LinearRecurrence[{6, -15, 20, -15, 6, -1}, {0, 60, 360, 1260, 3360, 7560}, 32]
Table[Pochhammer[n, 5]/2, {n, 0, 50}] (* G. C. Greubel, Nov 20 2017 *)
PROG
(PARI) for(n=0, 30, print1(n*(n+1)*(n+2)*stirling(4 + n, 3 + n, 2), ", ")) \\ G. C. Greubel, Nov 20 2017
(Magma) [0] cat [Factorial(n+4)/(2*Factorial(n-1)): n in [1..30]]; // G. C. Greubel, Nov 20 2017
(PARI) concat(0, Vec(60*x / (1 - x)^6 + O(x^40))) \\ Colin Barker, Nov 21 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Peter Luschny, Oct 20 2017
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 23 23:02 EDT 2024. Contains 376185 sequences. (Running on oeis4.)