OFFSET
1,1
COMMENTS
Any solution for the terms that are currently zero is > 10^14. Since there are so many 'missing' values, I would recommend leaving the more keyword. - Larry Reeves (larryr(AT)acm.org), Jul 02 2002
The nonzero terms are sure terms, only the zero terms are conjectured. - Michel Marcus, Nov 02 2023
EXAMPLE
a(1) = 8 = 2^3 and 8 + 1 = 9 = 3^2;
a(3) = 125 = 5^3 and 125 + 3 = 128 = 2^7.
PROG
(PARI) lista(nn) = my(vpp=select(x->(isprimepower(x) && !isprime(x)), [2..10^4]), v=vector(nn)); for (i=1, #vpp, for (j=1, i-1, my(d = vpp[i] - vpp[j]); if ((d<=nn) && (!v[d] || (vpp[j]<v[d])), v[d] = vpp[j]); ); ); v; \\ Michel Marcus, Oct 30 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Mar 24 2002
EXTENSIONS
More terms from Larry Reeves (larryr(AT)acm.org), Jul 02 2002
Description corrected by Karl W. Heuer, Apr 08 2012
STATUS
approved