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!)
A354397 Expansion of e.g.f. exp( -(exp(x) - 1)^4 / 24 ). 4
1, 0, 0, 0, -1, -10, -65, -350, -1666, -6510, -7855, 270050, 4948669, 63503440, 702095030, 6924754200, 58870214129, 356043924590, -615569993285, -74306502570650, -1783956267419536, -32695418069393310, -520090808927130925, -7317310078355307250, -87056749651694635451 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
a(0) = 1; a(n) = -Sum_{k=1..n} binomial(n-1,k-1) * Stirling2(k,4) * a(n-k).
a(n) = Sum_{k=0..floor(n/4)} (4*k)! * Stirling2(n,4*k)/((-24)^k * k!).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(-(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-1, j-1)*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*k!));
CROSSREFS
Sequence in context: A022638 A354393 A346976 * A003519 A056280 A000453
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 April 19 02:12 EDT 2024. Contains 371782 sequences. (Running on oeis4.)