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!)
A354135 Expansion of e.g.f. 1/(1 - log(1 + x)^5/120). 3
1, 0, 0, 0, 0, 1, -15, 175, -1960, 22449, -269073, 3403070, -45510630, 643152796, -9586136560, 150319669136, -2473024029840, 42562037379744, -764017130370276, 14260496108114340, -275877454002406236, 5512350021871343616, -113318466860425703184 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
LINKS
FORMULA
a(0) = 1; a(n) = 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)/120^k.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1-log(1+x)^5/120)))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=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)/120^k);
CROSSREFS
Sequence in context: A346320 A051588 A016164 * A354137 A000482 A347004
KEYWORD
sign
AUTHOR
Seiichi Manyama, May 18 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 April 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)