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

A337012
a(n) = exp(-1/2) * Sum_{k>=0} (2*k + n)^n / (2^k * k!).
0
1, 2, 11, 92, 1025, 14232, 236403, 4568720, 100670529, 2490511776, 68341981051, 2059882505408, 67645498798721, 2403948686290816, 91914992104815459, 3762299973887526144, 164148252324092964993, 7604537914425558921728, 372812121514187124192875
OFFSET
0,2
FORMULA
a(n) = n! * [x^n] exp(n*x + (exp(2*x) - 1) / 2).
a(n) = Sum_{k=0..n} binomial(n,k) * n^(n-k) * A004211(k).
MATHEMATICA
Table[n! SeriesCoefficient[Exp[n x + (Exp[2 x] - 1)/2], {x, 0, n}], {n, 0, 18}]
Unprotect[Power]; 0^0 = 1; Table[Sum[Binomial[n, k] n^(n - k) 2^k BellB[k, 1/2], {k, 0, n}], {n, 0, 18}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 11 2020
STATUS
approved