login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A076706
Primes which are the difference between two successive prime powers of prime numbers.
0
2, 3, 5, 17, 41, 139, 199, 271, 1217, 3617, 4001, 4241, 117017, 746153, 137542193
OFFSET
1,1
EXAMPLE
3 = 128 - 125 = 2^7 - 5^3; 4241 = 528529 - 524288 = 727^2 - 2^19.
MATHEMATICA
pp = Sort[ Flatten[ Table[ Prime[n]^Prime[i], {n, 1, PrimePi[ Sqrt[10^16]]}, {i, 1, PrimePi[ Floor[ Log[ Prime[n], 10^16]]]}]]]; a = {}; Do[ If[ PrimeQ[ pp[[n + 1]] - pp[[n]]], a = Append[a, pp[[n + 1]] - pp[[n]]]], {n, 1, Length[pp] - 1}]; Union[a]
CROSSREFS
Sequence in context: A348153 A211972 A339855 * A243441 A256426 A019350
KEYWORD
nonn
AUTHOR
Zak Seidov, Oct 26 2002
EXTENSIONS
Edited and extended by Robert G. Wilson v, Oct 31 2002
STATUS
approved