OFFSET
0,2
FORMULA
E.g.f.: B(x)^3, where B(x) is the e.g.f. of A052802.
E.g.f.: A(x) = ( (1/x) * Series_Reversion(x * (1 + log(1-x))) )^3.
a(n) = (3/(n+3)!) * Sum_{k=0..n} (n+k+2)! * |Stirling1(n,k)|.
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace((serreverse(x*(1+log(1-x)))/x)^3))
(PARI) a(n) = 3*sum(k=0, n, (n+k+2)!*abs(stirling(n, k, 1)))/(n+3)!;
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 01 2024
STATUS
approved