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 A291632 #6 Aug 28 2017 08:59:45
%S A291632 0,1,2,9,28,125,486,2317,10424,53433,267850,1470161,8032212,46925749,
%T A291632 275437358,1702883925,10630404976,69192858737,455957606034,
%U A291632 3110617216153,21512638153100,153234193139181,1107087138215542,8206182165264029,61703155328534568
%N A291632 Column 1 of A122832.
%F A291632 E.g.f.: x*exp(x*(x+1)).
%F A291632 Recurrence: (n-1)*a(n) = n*a(n-1) + 2*(n-1)*n*a(n-2).
%F A291632 a(n) ~ 2^(n/2 - 1) * n^((n+1)/2) * exp(sqrt(n/2) - n/2 - 1/8).
%t A291632 Table[n!*Sum[Binomial[i, n - 1 - i]/i!, {i, 0, n - 1}], {n, 0, 30}]
%t A291632 CoefficientList[Series[x*E^(x*(x+1)), {x, 0, 20}], x] * Range[0, 20]!
%Y A291632 Cf. A122832, A047974.
%K A291632 nonn
%O A291632 0,3
%A A291632 _Vaclav Kotesovec_, Aug 28 2017