A059452 Safe primes (A005385) that are not Sophie Germain primes.
7, 47, 59, 107, 167, 227, 263, 347, 383, 467, 479, 503, 563, 587, 839, 863, 887, 983, 1187, 1283, 1307, 1319, 1367, 1487, 1523, 1619, 1823, 1907, 2027, 2099, 2207, 2447, 2579, 2879, 2999, 3119, 3167, 3203, 3467, 3947, 4007, 4079, 4127, 4139, 4259, 4283
Offset: 1
Keywords
Examples
347 is a term because 173 is a prime but 695 is not.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
- Chris K. Caldwell, Cunningham Chain.
- Warut Roonguthai, Yves Gallot's Proth.exe and Cunningham Chains. [Wayback Machine link]
Crossrefs
Programs
-
Mathematica
lst={};Do[p=Prime[n];If[PrimeQ[(p-1)/2],If[ !PrimeQ[2*p+1],AppendTo[lst,p]]],{n,6!}];lst (* Vladimir Joseph Stephan Orlovsky, Jun 24 2009 *)
-
PARI
is(p) = p > 2 && isprime(p) && isprime((p-1)/2) && !isprime(2*p+1); \\ Amiram Eldar, Jul 15 2024
-
Python
from itertools import count, islice from sympy import isprime, prime def A059452_gen(): # generator of terms return filter(lambda p:isprime(p>>1) and not isprime(p<<1|1),(prime(i) for i in count(1))) A059452_list = list(islice(A059452_gen(),10)) # Chai Wah Wu, Jul 12 2022
Formula
Extensions
Broken link updated by R. J. Mathar, Apr 12 2010
Comments