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!)
A354230 Expansion of e.g.f. 1/(1 - log(1 + x)^5). 2
1, 0, 0, 0, 0, 120, -1800, 21000, -235200, 2693880, -28690200, 210447600, 1465952400, -123513355680, 4155643171680, -114924516470400, 2886135295680000, -66750668391381120, 1375830884058456960, -22036006671394705920, 70186623981895296000, 16180846322732941893120 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
a(0) = 1; a(n) = 120 * Sum_{k=1..n} binomial(n,k) * Stirling1(k,5) * a(n-k).
a(n) = Sum_{k=0..floor(n/5)} (5*k)! * Stirling1(n,5*k).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1-log(1+x)^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, 1)*v[i-j+1])); v;
(PARI) a(n) = sum(k=0, n\5, (5*k)!*stirling(n, 5*k, 1));
CROSSREFS
Sequence in context: A053567 A056270 A001118 * A354232 A052767 A353404
KEYWORD
sign
AUTHOR
Seiichi Manyama, May 20 2022
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 May 21 22:16 EDT 2024. Contains 372741 sequences. (Running on oeis4.)