login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A231326 Primes p such that p - 2*k is also prime, where p is k-th prime. 2

%I #6 Nov 07 2013 11:31:40

%S 17,19,23,37,47,67,71,73,83,89,97,113,131,137,139,149,151,157,167,179,

%T 181,197,199,223,233,263,307,331,353,379,397,419,421,439,443,457,461,

%U 463,503,557,587,613,631,641,643,659,661,677,701,719,743,761,773,839,863

%N Primes p such that p - 2*k is also prime, where p is k-th prime.

%H K. D. Bajpai, <a href="/A231326/b231326.txt">Table of n, a(n) for n = 1..5200</a>

%e a(2)= 19 which is 8th prime. prime(8)-2*8= 19-16= 3 which is also prime.

%e a(6)= 67 which is 19th prime. prime(19)-2*19= 67-38= 29 which is also prime.

%p 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);

%t TK = Select[Table[{Prime[n], Prime[n] - 2*n}, {n, 200}], PrimeQ[#[[2]]] &]; Transpose[TK][[1]]

%Y Cf. A061068 (primes: prime(m) plus its subscript).

%Y Cf. A064402 (numbers n: prime(n)+n is prime).

%Y Cf. A227420 (primes: p - pi(p) is also prime).

%Y Cf. A231232 (primes: prime(k)+2*k is also prime).

%K nonn

%O 1,1

%A _K. D. Bajpai_, Nov 07 2013

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)