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!)
A059323 Smaller term of closest safe prime pairs. 4
11, 47, 167, 347, 467, 1307, 2027, 2447, 4127, 4787, 5087, 5387, 5927, 12527, 12647, 15287, 18947, 28307, 39107, 39827, 41507, 44687, 51827, 63587, 64007, 71987, 73847, 76367, 76907, 78467, 79967, 83207, 118787, 121547, 143687, 164987 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
{x| both x and x+12 are safe primes}; Intersection(12+A005385, primes)
EXAMPLE
11 and 23 are consecutive safe primes but not consecutive primes; 467 and 479 are consecutive safe primes and consecutive primes as well. Both 11 and 467 are here.
MATHEMATICA
seqQ[n_] := And @@ PrimeQ[{n, n+12, (n-1)/2, (n+11)/2}]; Select[Range[165000], seqQ] (* Amiram Eldar, Jan 13 2020 *)
PROG
(Magma) [p:p in PrimesUpTo(165000)| IsPrime(p+12) and IsPrime((p-1) div 2) and IsPrime( (p+11) div 2)]; // Marius A. Burtea, Jan 13 2020
CROSSREFS
Sequence in context: A036489 A076306 A219079 * A267614 A123984 A141282
KEYWORD
nonn
AUTHOR
Labos Elemer, Jan 26 2001
EXTENSIONS
Offset corrected by Amiram Eldar, Jan 13 2020
STATUS
approved

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 18 08:27 EDT 2024. Contains 371769 sequences. (Running on oeis4.)