OFFSET
0,2
FORMULA
a(n) ~ n! * exp(5/3). - Vaclav Kotesovec, Aug 04 2014
D-finite with recurrence +2*a(n) +2*(-n-1)*a(n-1) +(n-1)*(n-2)*a(n-3) +(n-1)*(n-2)*(n-3)*a(n-4)=0. - R. J. Mathar, Aug 20 2021
MATHEMATICA
With[{nn=20}, CoefficientList[Series[Exp[x+x^2/2!+x^3/3!]/(1-x), {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Jun 01 2014 *)
PROG
(PARI) x='x+O('x^66); Vec(serlaplace(exp(x+x^2/2!+x^3/3!)/(1-x))) \\ Joerg Arndt, Jun 01 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
Karol A. Penson, Jun 08 2007
EXTENSIONS
Incorrect initial term 1 removed by Harvey P. Dale, Jun 01 2014
STATUS
approved