OFFSET
1,2
COMMENTS
No other terms up to 10^9. - Michel Marcus, Mar 26 2020
a(5) > 10^12, if it exists. - Giovanni Resta, Apr 12 2020
EXAMPLE
2111 is a term because 1+2+3+4+5+7+8+..+2111 = 323761 = 569^2.
PROG
(PARI)
ispp1(n) = isprimepower(n) || (n==1); \\ A000961
ispp2(n) = ispower(n, , &p) && isprime(p) || n==1; \\ A025475
lista(nn) = {my(s=0); for (n=1, nn, if (ispp1(n), s += n; if (ispp2(s), print1(n, ", ")); ); ); } \\ Michel Marcus, Mar 26 2020
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Naohiro Nomoto, Mar 08 2002
STATUS
approved