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 A124068 #19 Mar 31 2017 21:05:33 %S A124068 0,1,1741725,4210818,9800817,9926315,14459929 %N A124068 Fixed points for operation of repeatedly replacing a number with the sum of the seventh power of its digits. %C A124068 The sequence "Fixed points for operation of repeatedly replacing a number by the sum of the sixth power of its digits" has just 3 terms: 0, 1, and 548834. %C A124068 For a d-digit number n >= 10^(d-1), the sum of 7th powers of its digits is <= 9^7*d, therefore these numbers cannot exceed 41205040. - _M. F. Hasler_, Apr 12 2015 %e A124068 1741725 = 1^7 + 7^7 + 4^7 + 1^7 + 7^7 + 2^7 + 5^7. %o A124068 (PARI) isok(n) = my(d = digits(n)); sum(k=1, #d, d[k]^7) == n; \\ _Michel Marcus_, Feb 21 2015 %o A124068 (PARI) for(n=0,41205040,A123253(n)==n&&print1(n",")) \\ _M. F. Hasler_, Apr 12 2015 %Y A124068 Cf. A046197, A052455, A052464, A124069, A226970, A003321. %K A124068 base,fini,full,nonn %O A124068 1,3 %A A124068 _Sébastien Dumortier_, Nov 05 2006