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

A368283
Expansion of e.g.f. exp(2*x) / (1 + log(1 - x)).
2
1, 3, 11, 52, 320, 2486, 23402, 258252, 3263528, 46433648, 734322672, 12776283136, 242519067056, 4987324250416, 110454579648688, 2621008072506592, 66341399843669760, 1784150447268259456, 50804574646886197888, 1527058892582680257024
OFFSET
0,2
FORMULA
a(n) = 2^n + Sum_{k=1..n} (k-1)! * binomial(n,k) * a(n-k).
a(n) ~ n! * exp(n + 2 - 2*exp(-1)) / (exp(1) - 1)^(n+1). - Vaclav Kotesovec, Dec 29 2023
PROG
(PARI) a_vector(n) = my(v=vector(n+1)); for(i=0, n, v[i+1]=2^i+sum(j=1, i, (j-1)!*binomial(i, j)*v[i-j+1])); v;
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 19 2023
STATUS
approved