A231326 Primes p such that p - 2*k is also prime, where p is k-th prime.
17, 19, 23, 37, 47, 67, 71, 73, 83, 89, 97, 113, 131, 137, 139, 149, 151, 157, 167, 179, 181, 197, 199, 223, 233, 263, 307, 331, 353, 379, 397, 419, 421, 439, 443, 457, 461, 463, 503, 557, 587, 613, 631, 641, 643, 659, 661, 677, 701, 719, 743, 761, 773, 839, 863
Offset: 1
Keywords
Examples
a(2)= 19 which is 8th prime. prime(8)-2*8= 19-16= 3 which is also prime. a(6)= 67 which is 19th prime. prime(19)-2*19= 67-38= 29 which is also prime.
Links
- K. D. Bajpai, Table of n, a(n) for n = 1..5200
Crossrefs
Programs
-
Maple
KD := proc() local a,b; a:= ithprime(n); b := a-2*n; if isprime(b) then RETURN (a); fi;end: seq(KD(),n=1..500);
-
Mathematica
TK = Select[Table[{Prime[n], Prime[n] - 2*n}, {n, 200}], PrimeQ[#[[2]]] &]; Transpose[TK][[1]]