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!)
A354396 Expansion of e.g.f. exp( -(exp(x) - 1)^3 / 6 ). 3
1, 0, 0, -1, -6, -25, -80, -91, 1694, 23155, 206340, 1442969, 6928394, -6507865, -752409840, -12953182971, -160186016906, -1548849362085, -9789241693220, 28359195353489, 2378650585685794, 52832659521004495, 855581150441210600, 10878338100191146749 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(0) = 1; a(n) = -Sum_{k=1..n} binomial(n-1,k-1) * Stirling2(k,3) * a(n-k).
a(n) = Sum_{k=0..floor(n/3)} (3*k)! * Stirling2(n,3*k)/((-6)^k * k!).
MATHEMATICA
With[{nn=30}, CoefficientList[Series[Exp[-(Exp[x]-1)^3/6], {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Dec 02 2023 *)
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(-(exp(x)-1)^3/6)))
(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, 3, 2)*v[i-j+1])); v;
(PARI) a(n) = sum(k=0, n\3, (3*k)!*stirling(n, 3*k, 2)/((-6)^k*k!));
CROSSREFS
Sequence in context: A278473 A281157 A346975 * A256859 A133714 A164271
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 21 04:19 EDT 2024. Contains 372720 sequences. (Running on oeis4.)