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

A331658
E.g.f.: exp(x/(1 - 2*x)) / (1 - x).
1
1, 2, 9, 64, 617, 7446, 107377, 1795844, 34114929, 724822282, 17018900921, 437402060712, 12208463140249, 367629791490014, 11876750557295457, 409663873470828076, 15023747377122799457, 583644746007467984274, 23939828792355240206569, 1033788018952899566018192
OFFSET
0,2
FORMULA
a(n) = Sum_{k=0..n} binomial(n,k)^2 * k! * A000262(n-k).
a(n) = Sum_{k=0..n} binomial(n,k) * k! * A025168(n-k).
a(n) ~ 2^(n + 1/4) * n^(n - 1/4) * exp(-1/4 + sqrt(2*n) - n) * (1 - 23*sqrt(2) / (48*sqrt(n))). - Vaclav Kotesovec, Jan 26 2020
MATHEMATICA
nmax = 19; CoefficientList[Series[Exp[x/(1 - 2 x)]/(1 - x), {x, 0, nmax}], x] Range[0, nmax]!
A000262[n_] := If[n == 0, 1, n! Sum[Binomial[n - 1, k]/(k + 1)!, {k, 0, n - 1}]]; a[n_] := Sum[Binomial[n, k]^2 k! A000262[n - k], {k, 0, n}]; Table[a[n], {n, 0, 19}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jan 24 2020
STATUS
approved