login
A075228
Numbers k such that k^5 is an interprime = average of two successive primes.
10
20, 42, 77, 81, 186, 198, 200, 220, 248, 266, 270, 294, 300, 387, 411, 477, 498, 537, 630, 678, 682, 696, 728, 741, 774, 819, 872, 985, 987, 1001, 1014, 1037, 1060, 1083, 1084, 1087, 1098, 1140, 1155, 1162, 1232, 1245, 1278, 1316, 1370, 1392, 1397, 1402
OFFSET
1,1
COMMENTS
Interprimes are in A024675, even interprimes are in A072568, odd interprimes are in A072569 n^2 as interprimes are in A075190, n^3 as interprimes are in A075191, n^4 as interprimes are in A075192, n^6 as interprimes are in A075229, n^7 as interprimes are in A075230, n^8 as interprimes are in A075231, n^9 as interprimes are in A075232, n^10 as interprimes are in A075233, a(n) such that a(n)^n = smallest interprime (of the form a^n) are in A075234.
LINKS
EXAMPLE
20 is a term because 20^5 = 3200000 is the average of two successive primes 3199997 and 3200003.
MAPLE
s := 5: for n from 2 to 1000 do if prevprime(n^s)+nextprime(n^s)=2*n^s then print(n) else; fi; od;
KEYWORD
nonn
AUTHOR
Zak Seidov, Sep 09 2002
EXTENSIONS
More terms from Jason Earls, Sep 09 2002
Edited by Robert G. Wilson v Sep 14 2002
STATUS
approved