OFFSET
0,2
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..200
C. G. Bower, Transforms (2)
FORMULA
E.g.f.: 1 + (g(x) + g(x)^2/2 - log(1-g(x)))/2 where g(x) = 3*(exp(x) - 1). - Andrew Howroyd, Sep 12 2018
MATHEMATICA
m = 19; (1 + (g[x] + g[x]^2/2 - Log[1 - g[x]])/2 /. g[x] -> 3*(Exp[x] - 1) + O[x]^m // CoefficientList[#, x]&)*Range[0, m-1]! (* Jean-François Alcover, Sep 11 2019 *)
PROG
(PARI) seq(n)={my(p=3*(exp(x + O(x*x^n))-1)); Vec(1 + serlaplace(p + p^2/2 - log(1-p))/2)} \\ Andrew Howroyd, Sep 12 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
a(0)=1 prepended and terms a(17) and beyond from Andrew Howroyd, Sep 12 2018
STATUS
approved