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!)
A354393 Expansion of e.g.f. 1/(1 + (exp(x) - 1)^4 / 24). 5
1, 0, 0, 0, -1, -10, -65, -350, -1631, -5250, 18395, 685850, 10485739, 127737610, 1336804105, 11432407350, 54280609109, -712071643930, -29671691715185, -660215774400350, -11770593620859521, -176475952496559870, -2055362595355830475, -9749893741512339250 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
a(0) = 1; a(n) = -Sum_{k=1..n} binomial(n,k) * Stirling2(k,4) * a(n-k).
a(n) = Sum_{k=0..floor(n/4)} (4*k)! * Stirling2(n,4*k)/(-24)^k.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1+(exp(x)-1)^4/24)))
(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, 4, 2)*v[i-j+1])); v;
(PARI) a(n) = sum(k=0, n\4, (4*k)!*stirling(n, 4*k, 2)/(-24)^k);
CROSSREFS
Sequence in context: A073381 A092441 A022638 * A346976 A354397 A003519
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 4 04:33 EDT 2024. Contains 372227 sequences. (Running on oeis4.)