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 A295552 #4 Nov 23 2017 19:24:31 %S A295552 1,1,5,46,689,15476,483157,19719022,1009495489,63119450152, %T A295552 4728073048901,417482964953594,42834647403146161,5043607239173464924, %U A295552 674409403861210214485,101517071981284179924526,17074451852556909059698433,3187883879639402167714593488,656838643288782957496595002117 %N A295552 a(n) = n! * [x^n] exp(x*exp(n*x)). %H A295552 N. J. A. Sloane, <a href="/transforms.txt">Transforms</a> %F A295552 a(n) = Sum_{k=0..n} binomial(n,k)*(n*k)^(n-k). %t A295552 Table[n! SeriesCoefficient[Exp[x Exp[n x]], {x, 0, n}], {n, 0, 18}] %t A295552 Join[{1}, Table[Sum[Binomial[n, k] (n k)^(n - k), {k, 0, n}], {n, 1, 18}]] %Y A295552 Cf. A000248, A216689, A292914. %K A295552 nonn %O A295552 0,3 %A A295552 _Ilya Gutkovskiy_, Nov 23 2017