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 A160814 #6 Jul 18 2021 12:38:25 %S A160814 1,2,8,7073 %N A160814 a(1) = 1; a(n+1) = a(n)^n + n^a(n). %C A160814 Next term is too large to display: 2.3459495195697547514*10^4258 %C A160814 The next term (a(5)) has 4259 digits. - _Harvey P. Dale_, Jul 18 2021 %t A160814 a=1;lst={};Do[a=a^n+n^a;AppendTo[lst,IntegerPart[a]],{n,0,4}];lst %t A160814 nxt[{n_, a_}] := {n + 1, a^n + n^a}; NestList[nxt, {1, 1}, 4][[All, 2]] (* _Harvey P. Dale_, Jul 18 2021 *) %Y A160814 Cf. A093898, A055652, A076980. - _R. J. Mathar_, May 29 2009 %K A160814 nonn %O A160814 1,2 %A A160814 _Vladimir Joseph Stephan Orlovsky_, May 26 2009 %E A160814 Edited by _N. J. A. Sloane_, May 29 2009