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 A053817 #24 Jul 02 2025 16:01:59 %S A053817 1,2,8,33,148,765,4626,32431,259512,2335689,23356990,256927011, %T A053817 3083124276,40080615757,561128620794,8416929312135,134670868994416, %U A053817 2289404772905361,41209285912296822,782976432333639979,15659528646672799980,328850101580128800021 %N A053817 a(0)=1, a(n) = n*(a(n-1) + n). %F A053817 a(n) = A030297(n) + n! = A019460(2n+1) - n. - _Henry Bottomley_, Nov 10 2000 %F A053817 a(n)= n! + floor(2*e*n!-n) - 2, n>1. - _Gary Detlefs_, Jun 22 2010 %F A053817 E.g.f.: (1 + x * (1 + x) * exp(x)) / (1 - x). - _Ilya Gutkovskiy_, Oct 11 2021 %e A053817 Start with 1, add 1, multiply by 1 (getting 2), add 2, multiply by 2 (getting 8). %p A053817 a:= proc(n) a(n):= n*(a(n-1) + n) end: a(0):= 1: %p A053817 seq(a(n), n=0..23); # _Alois P. Heinz_, May 12 2021 %t A053817 a=1;lst={a};Do[a=(a+n)*n;AppendTo[lst, a], {n, 2*4!}];lst (* _Vladimir Joseph Stephan Orlovsky_, Dec 14 2008 *) %t A053817 RecurrenceTable[{a[0]==1,a[n]==n(a[n-1]+n)},a,{n,20}] (* _Harvey P. Dale_, Feb 14 2015 *) %Y A053817 Cf. A019460, A030297. %K A053817 nonn,easy,nice %O A053817 0,2 %A A053817 mindy and steve schwartz (minsteve(AT)netvision.net.il), Apr 07 2000 %E A053817 More terms from _James Sellers_, Apr 08 2000