login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A344317
a(n) = n*a(n-1) + n^(1+n mod 2), a(0) = 1.
3
1, 2, 6, 19, 80, 401, 2412, 16885, 135088, 1215793, 12157940, 133737341, 1604848104, 20863025353, 292082354956, 4381235324341, 70099765189472, 1191696008221025, 21450528147978468, 407560034811590893, 8151200696231817880, 171175214620868175481
OFFSET
0,2
LINKS
FORMULA
E.g.f.: (1+(x+1)*sinh(x))/(1-x).
a(n) = A155521(n-1) + A344262(n) for n > 0.
Lim_{n->infinity} a(n)/n! = 1+2*sinh(1) = 1+e-1/e = 1+A174548. - Amrit Awasthi, May 19 2021
MAPLE
a:= proc(n) a(n):= n*a(n-1) + n^(1+n mod 2) end: a(0):= 1:
seq(a(n), n=0..23);
CROSSREFS
KEYWORD
nonn
AUTHOR
Alois P. Heinz, May 14 2021
STATUS
approved