This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A337057 #6 Aug 13 2020 22:42:43 %S A337057 1,0,2,3,52,255,4146,38766,688584,9685017,195875110,3655101703, %T A337057 84872077500,1955205893680,51896551499898,1412668946049315, %U A337057 42475968202854160,1328074354724554471,44778480417250291566,1577210136570598631318 %N A337057 a(n) = exp(-n) * Sum_{k>=0} (k - n)^n * n^k / k!. %F A337057 a(n) = n! * [x^n] exp(n*(exp(x) - 1 - x)). %F A337057 a(n) = Sum_{k=0..n} binomial(n,k) * (-n)^(n-k) * BellPolynomial_k(n). %t A337057 Table[n! SeriesCoefficient[Exp[n (Exp[x] - 1 - x)], {x, 0, n}], {n, 0, 19}] %t A337057 Unprotect[Power]; 0^0 = 1; Table[Sum[Binomial[n, k] (-n)^(n - k) BellB[k, n], {k, 0, n}], {n, 0, 19}] %Y A337057 Cf. A000296, A194689, A242817, A334242, A335867. %K A337057 nonn %O A337057 0,3 %A A337057 _Ilya Gutkovskiy_, Aug 13 2020