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”).
%I #8 Nov 10 2017 07:37:26
%S 0,1,6,33,216,1865,21228,303765,5222864,104540337,2383558740,
%T 60933722069,1725392415288,53590463856345,1811281159509500,
%U 66172416761172885,2598298697830360992,109116931783034360801,4880122696811960470692,231565260558289051906965
%N E.g.f.: -exp(2*x)*LambertW(-x).
%H G. C. Greubel, <a href="/A277485/b277485.txt">Table of n, a(n) for n = 0..385</a>
%F a(n) = Sum_{m=1..n} (binomial(n,m) * Sum_{k=1..m} binomial(m,k)*k^(k-1)).
%F a(n) ~ exp(2*exp(-1)) * n^(n-1).
%t CoefficientList[Series[-Exp[2*x]*LambertW[-x], {x, 0, 20}], x]*Range[0, 20]!
%t Table[Sum[Binomial[n, m]*Sum[Binomial[m, k]*k^(k-1), {k, 1, m}], {m, 1, n}], {n, 0, 20}]
%o (PARI) x='x+O('x^50); concat([0], Vec(serlaplace(- exp(2*x)*lambertw(-x) ))) \\ _G. C. Greubel_, Nov 08 2017
%Y Cf. A000169, A069856, A086331, A277457, A277473, A277474.
%K nonn
%O 0,3
%A _Vaclav Kotesovec_, Oct 17 2016