OFFSET
0,4
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..415
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)!.
a(n) ~ c * n^(n-1) / (2 * exp(n) * r^n), where r = 0.6181555791782259971637080007872096609874188426179... is the root of the equation r^2 * log(1-r) = -exp(-1) and c = (sqrt(2 + exp(1)*r^3/(1-r))) = 1.91872811548413716811307748684660958454...
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
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 24 2022
STATUS
approved
