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”).

A368268
Expansion of e.g.f. exp(-x) / (1 - 2*x*exp(x)).
2
1, 1, 9, 71, 817, 11599, 197881, 3938087, 89569761, 2291869727, 65159228521, 2037767466679, 69521938950289, 2569515452879855, 102274007835523161, 4361566914028222919, 198403133940750790081, 9589223805173365594687, 490729273233730201604809
OFFSET
0,3
FORMULA
a(n) = n! * Sum_{k=0..n} 2^(n-k) * (n-k-1)^k / k!.
PROG
(PARI) a(n) = n!*sum(k=0, n, 2^(n-k)*(n-k-1)^k/k!);
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Dec 19 2023
STATUS
approved