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 A071421 #9 Dec 11 2016 11:24:32 %S A071421 1,5,14,27,38,65,90,127,172,173,214,268,326,378,477,565,663,771,898, %T A071421 929,1046,1194,1340,1493,1644,1798,1987,2150,2317,2380,2564,2769,2976, %U A071421 3190,3450,3720,3991,4256,4562,4674,4982,5297,5610,5935,6241,6593,6967 %N A071421 a(n) = a(n-1) + sum of decimal digits of n^n. %H A071421 Harvey P. Dale, <a href="/A071421/b071421.txt">Table of n, a(n) for n = 1..1000</a> %t A071421 s=0; Do[s=s+Apply[Plus, IntegerDigits[n^n]]; Print[s], {n, 1, 128}] %t A071421 nxt[{n_,a_}]:={n+1,a+Total[IntegerDigits[(n+1)^(n+1)]]}; NestList[nxt,{1,1},50][[All,2]] (* _Harvey P. Dale_, Dec 11 2016 *) %Y A071421 Cf. A037123, A000788, A051351. %K A071421 base,easy,nonn %O A071421 1,2 %A A071421 _Labos Elemer_, May 27 2002