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 A068343 #11 Apr 12 2020 03:52:47 %S A068343 1,2111,43997,69499 %N A068343 a(n) is a prime power and sum of all prime powers <= a(n) is A025475. %C A068343 No other terms up to 10^9. - _Michel Marcus_, Mar 26 2020 %C A068343 a(5) > 10^12, if it exists. - _Giovanni Resta_, Apr 12 2020 %e A068343 2111 is a term because 1+2+3+4+5+7+8+..+2111 = 323761 = 569^2. %o A068343 (PARI) %o A068343 ispp1(n) = isprimepower(n) || (n==1); \\ A000961 %o A068343 ispp2(n) = ispower(n, , &p) && isprime(p) || n==1; \\ A025475 %o A068343 lista(nn) = {my(s=0); for (n=1, nn, if (ispp1(n), s += n; if (ispp2(s), print1(n, ", "));););} \\ _Michel Marcus_, Mar 26 2020 %Y A068343 Cf. A000961, A024918, A025475. %K A068343 nonn,more %O A068343 1,2 %A A068343 _Naohiro Nomoto_, Mar 08 2002