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!)
A354394 Expansion of e.g.f. 1/(1 + (exp(x) - 1)^5 / 120). 4
1, 0, 0, 0, 0, -1, -15, -140, -1050, -6951, -42273, -232870, -949740, 2401399, 149618469, 2979464124, 47639256210, 683529622229, 9045426379611, 109599657976942, 1148191101672384, 8033814119097459, -50834295574038207, -3977581842278623216, -119536187842156328034 (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) * Stirling2(k,5) * a(n-k).
a(n) = Sum_{k=0..floor(n/5)} (5*k)! * Stirling2(n,5*k)/(-120)^k.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1+(exp(x)-1)^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, 2)*v[i-j+1])); v;
(PARI) a(n) = sum(k=0, n\5, (5*k)!*stirling(n, 5*k, 2)/(-120)^k);
CROSSREFS
Sequence in context: A133716 A035330 A002803 * A346977 A354398 A056281
KEYWORD
sign
AUTHOR
Seiichi Manyama, May 25 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 22 06:48 EDT 2024. Contains 372743 sequences. (Running on oeis4.)