A181492 Primes of the form p=3*2^k+1 such that p-2 is also a prime.
7, 13, 193, 786433
Offset: 1
Keywords
Programs
-
Mathematica
Select[3 2^Range[100]+1,And@@PrimeQ[{#,#-2}]&] (* Harvey P. Dale, Jun 19 2013 *)
-
PARI
for( k=1,999, ispseudoprime(3<
Comments