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!)
A356952 E.g.f. satisfies log(A(x)) = x^3/6 * (exp(x) - 1) * A(x). 3
1, 0, 0, 0, 4, 10, 20, 35, 1736, 15204, 88320, 415965, 7632460, 121801966, 1368227224, 12184672955, 176889193040, 3490851044360, 59703361471296, 837948141904569, 13407228541467540, 283596013866706450, 6226093732482731800, 121326684752194084471 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
a(n) = n! * Sum_{k=0..floor(n/4)} (k+1)^(k-1) * Stirling2(n-3*k,k)/(6^k * (n-3*k)!).
E.g.f.: A(x) = Sum_{k>=0} (k+1)^(k-1) * (x^3/6 * (exp(x) - 1))^k / k!.
E.g.f.: A(x) = exp( -LambertW(x^3/6 * (1 - exp(x))) ).
E.g.f.: A(x) = LambertW(x^3/6 * (1 - exp(x)))/(x^3/6 * (1 - exp(x))).
MATHEMATICA
nmax = 23; A[_] = 1;
Do[A[x_] = Exp[x^3/6*(Exp[x] - 1)*A[x]] + O[x]^(nmax+1) // Normal, {nmax}];
CoefficientList[A[x], x]*Range[0, nmax]! (* Jean-François Alcover, Mar 05 2024 *)
PROG
(PARI) a(n) = n!*sum(k=0, n\4, (k+1)^(k-1)*stirling(n-3*k, k, 2)/(6^k*(n-3*k)!));
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, (k+1)^(k-1)*(x^3/6*(exp(x)-1))^k/k!)))
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(-lambertw(x^3/6*(1-exp(x))))))
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(lambertw(x^3/6*(1-exp(x)))/(x^3/6*(1-exp(x)))))
CROSSREFS
Sequence in context: A368174 A353999 A355308 * A356963 A370992 A355180
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 06 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 July 29 21:21 EDT 2024. Contains 374734 sequences. (Running on oeis4.)