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!)
A243012 Odd primes p such that neither p - 4 nor p + 4 is prime. 0
5, 29, 31, 53, 59, 61, 73, 89, 137, 139, 149, 151, 157, 173, 179, 181, 191, 199, 211, 239, 241, 251, 257, 263, 269, 271, 283, 293, 331, 337, 347, 359, 367, 373, 389, 409, 419, 421, 431, 433, 449, 479, 509, 521, 523, 541, 547, 557, 563, 569, 571, 577, 587, 593, 599, 601, 607, 619 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) ~ n log n. - Charles R Greathouse IV, May 29 2014
EXAMPLE
5 is in this sequence because 5 is prime and neither 5 - 4 = 1 nor 5 + 4 = 9 is prime.
MATHEMATICA
Select[Prime[Range[125]], Not[PrimeQ[# - 4]] && Not[PrimeQ[# + 4]] &] (* Alonso del Arte, May 30 2014 *)
PROG
(Magma) [p: p in PrimesUpTo(620) | not IsPrime(p-4) and not IsPrime(p+4)];
(PARI) select(n->!isprime(n-4) && !isprime(n+4), primes(200)) \\ Charles R Greathouse IV, May 29 2014
(Sage) [p for p in primes(5, 700) if not is_prime(p-4) and not is_prime(p+4)] # Bruno Berselli, Jun 10 2014
CROSSREFS
Sequence in context: A001990 A043062 A321701 * A053244 A096696 A115279
KEYWORD
nonn
AUTHOR
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 July 27 14:37 EDT 2024. Contains 374647 sequences. (Running on oeis4.)