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!)
A355874 Expansion of e.g.f. -LambertW(x^2 * log(1-x))/2. 1
0, 0, 0, 3, 6, 20, 450, 3024, 21840, 449280, 5690160, 68579280, 1491462720, 27798076800, 485405784864, 11821894207200, 285057334598400, 6578025489584640, 183420564173141760, 5342163886869062400, 152988752430721267200, 4897735504358795965440 (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!/2) * Sum_{k=1..floor(n/3)} k^(k-1) * |Stirling1(n-2*k,k)|/(n-2*k)!.
MATHEMATICA
With[{m = 25}, Range[0, m]! * CoefficientList[Series[-ProductLog[x^2 * Log[1 - x]]/2, {x, 0, m}], x]] (* Amiram Eldar, Sep 24 2022 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); concat([0, 0, 0], Vec(serlaplace(-lambertw(x^2*log(1-x)))/2))
(PARI) a(n) = n!*sum(k=1, n\3, k^(k-1)*abs(stirling(n-2*k, k, 1))/(n-2*k)!)/2;
CROSSREFS
Cf. A355179.
Sequence in context: A355994 A375698 A356752 * A356967 A370996 A328567
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 24 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 August 29 23:34 EDT 2024. Contains 375520 sequences. (Running on oeis4.)