OFFSET
0,3
LINKS
Harvey P. Dale, Table of n, a(n) for n = 0..449
J. Devillet, Bisymmetric and quasitrivial operations: characterizations and enumerations, arXiv:1712.07856 [math.RA] (2017).
FORMULA
E.g.f.: (2*exp(x)-3)/(1-x).
a(n+1) = (n+1)*a(n)+2, a(0)=0, a(1)=1.
a(n) ~ (2*exp(1) - 3) * n!. - Vaclav Kotesovec, Jun 05 2019
MATHEMATICA
Join[{0}, Rest[ Range[0, 22]! CoefficientList[ Series[(2 Exp[x] -3)/(1 -x), {x, 0, 22}], x]]] (* Robert G. Wilson v, Dec 22 2017 *)
nxt[{n_, a_}]:={n+1, a(n+1)+2}; Join[{0}, NestList[nxt, {1, 1}, 20][[All, 2]]] (* Harvey P. Dale, Jun 09 2021 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
J. Devillet, Dec 22 2017
STATUS
approved