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!)
A373940 Expansion of e.g.f. 1/(1 - (exp(x) - 1)^5). 1
1, 0, 0, 0, 0, 120, 1800, 16800, 126000, 834120, 8731800, 229191600, 6352632000, 143603580120, 2736395461800, 47283190718400, 860150574738000, 20236134851478120, 614854122909391800, 19930647062659477200, 615406024970593164000, 17883373100352330768120 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
G.f.: Sum_{k>=0} (5*k)! * x^(5*k)/Product_{j=1..5*k} (1 - j * x).
a(0) = 1; a(n) = 120 * Sum_{k=1..n} binomial(n,k) * Stirling2(k,5) * a(n-k).
a(n) = Sum_{k=0..floor(n/5)} (5*k)! * Stirling2(n,5*k).
a(n) ~ n! / (10 * log(2)^(n+1)). - Vaclav Kotesovec, Aug 27 2024
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1-(exp(x)-1)^5)))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=120*sum(j=1, i, binomial(i, j)*stirling(j, 5, 2)*v[i-j+1])); v;
(PARI) a(n) = sum(k=0, n\5, (5*k)!*stirling(n, 5*k, 2));
CROSSREFS
Cf. A353200.
Sequence in context: A056270 A001118 A375773 * A354230 A354232 A052767
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 27 2024
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 September 12 16:19 EDT 2024. Contains 375853 sequences. (Running on oeis4.)