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!)
A236688 Primes p such that prime(p^2) + 2 is also prime. 5

%I #14 Aug 29 2021 11:13:35

%S 7,53,83,107,149,223,367,509,701,769,853,971,1039,1229,1283,1327,1373,

%T 1381,1439,1447,1459,1783,1873,1973,2237,2243,2269,2339,2347,2437,

%U 2459,2521,2531,2797,2857,3001,3391,3413,3461,3583,3593,3631,3659,3769,3889,3947

%N Primes p such that prime(p^2) + 2 is also prime.

%H K. D. Bajpai, <a href="/A236688/b236688.txt">Table of n, a(n) for n = 1..1119</a>

%e 7 is prime and appears in the sequence: prime(7^2) = 227 and 227+2 = 229, which is also prime.

%e 53 is prime and appears in the sequence: prime(53^2) = 25469 and 25469+2 = 25471, which is also prime.

%p KD := proc() local a,b; a:=ithprime(n); b:=ithprime(a^2)+2; if isprime (b) then RETURN (a);fi; end: seq(KD(), n=1..700);

%t Select[Prime[Range[600]],PrimeQ[Prime[#^2]+2]&] (* _Harvey P. Dale_, Aug 29 2021 *)

%o (PARI)

%o default(primelimit,2^31)

%o s=[]; forprime(p=2, 4000, if(isprime(prime(p^2)+2), s=concat(s, p))); s \\ _Colin Barker_, Jan 30 2014

%Y Cf. A000040, A234695, A236119.

%K nonn

%O 1,1

%A _K. D. Bajpai_, Jan 29 2014

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 14:54 EDT 2024. Contains 371960 sequences. (Running on oeis4.)