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!)
A356949 E.g.f. satisfies log(A(x)) = x^2 * (exp(x) - 1) * A(x). 2
1, 0, 0, 6, 12, 20, 1110, 7602, 35336, 1103832, 14984010, 134552990, 3457329612, 70828191876, 1017237973934, 25648737955050, 676111332667920, 13760810592066992, 373071111301807506, 11594147432172228918, 307097278689726728660, 9330499711181779575900 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
a(n) = n! * Sum_{k=0..floor(n/3)} (k+1)^(k-1) * Stirling2(n-2*k,k)/(n-2*k)!.
E.g.f.: A(x) = Sum_{k>=0} (k+1)^(k-1) * (x^2 * (exp(x) - 1))^k / k!.
E.g.f.: A(x) = exp( -LambertW(x^2 * (1 - exp(x))) ).
E.g.f.: A(x) = LambertW(x^2 * (1 - exp(x)))/(x^2 * (1 - exp(x))).
MATHEMATICA
nmax = 21; A[_] = 1;
Do[A[x_] = Exp[(-1 + Exp[x])*A[x]*x^2] + O[x]^(nmax+1) // Normal, {nmax}];
CoefficientList[A[x], x]*Range[0, nmax]! (* Jean-François Alcover, Mar 04 2024 *)
PROG
(PARI) a(n) = n!*sum(k=0, n\3, (k+1)^(k-1)*stirling(n-2*k, k, 2)/(n-2*k)!);
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, (k+1)^(k-1)*(x^2*(exp(x)-1))^k/k!)))
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(-lambertw(x^2*(1-exp(x))))))
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(lambertw(x^2*(1-exp(x)))/(x^2*(1-exp(x)))))
CROSSREFS
Sequence in context: A247212 A358013 A371116 * A362892 A371304 A355508
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 20:04 EDT 2024. Contains 374734 sequences. (Running on oeis4.)