The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A293476 a(n) = ((n + 1)/2)*(n + 2)*Pochhammer(n, 5) / 4!. 5
0, 15, 180, 1050, 4200, 13230, 35280, 83160, 178200, 353925, 660660, 1171170, 1987440, 3248700, 5140800, 7907040, 11860560, 17398395, 25017300, 35331450, 49092120, 67209450, 90776400, 121095000, 159705000, 208415025, 269336340, 344919330, 437992800, 551806200 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = n*Stirling2(4 + n, 1 + n).
-a(-n-4) = (n+4)*abs(Stirling1(n+3, n)) for n >= 0.
-a(-n-4) = a(n) + 5*binomial(n+4, 5)*(n+2) for n >= 0.
From Colin Barker, Nov 21 2017: (Start)
G.f.: 15*x*(1 + 4*x + 2*x^2) / (1 - x)^8.
a(n) = (1/48)*(n*(2 + 3*n + n^2)^2*(12 + 7*n + n^2)).
a(n) = 8*a(n-1) - 28*a(n-2) + 56*a(n-3) - 70*a(n-4) + 56*a(n-5) - 28*a(n-6) + 8*a(n-7) - a(n-8) for n>7.
(End)
MAPLE
A293476 := n -> ((n+1)/2)*(n+2)*pochhammer(n, 5)/4!:
seq(A293476(n), n=0..11);
MATHEMATICA
LinearRecurrence[{8, -28, 56, -70, 56, -28, 8, -1}, {0, 15, 180, 1050, 4200, 13230, 35280, 83160}, 32]
Table[n*StirlingS2[4 + n, 1 + n], {n, 0, 50}] (* G. C. Greubel, Nov 20 2017 *)
PROG
(PARI) for(n=0, 30, print1(n*stirling(n+4, n+1, 2), ", ")) \\ G. C. Greubel, Nov 20 2017
(Magma) [0] cat [((n + 1)/2)*(n + 2)*Factorial(n+4)/(Factorial(4)*Factorial(n-1)): n in [1..30]]; // G. C. Greubel, Nov 20 2017
(PARI) concat(0, Vec(15*x*(1 + 4*x + 2*x^2) / (1 - x)^8 + O(x^40))) \\ Colin Barker, Nov 21 2017
CROSSREFS
Sequence in context: A016216 A244604 A001717 * A004992 A055084 A005461
KEYWORD
nonn,easy
AUTHOR
Peter Luschny, Oct 20 2017
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | 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 June 11 01:27 EDT 2024. Contains 373283 sequences. (Running on oeis4.)