A140555 Primes p such that p + 6 is not a prime.
2, 3, 19, 29, 43, 59, 71, 79, 89, 109, 113, 127, 137, 139, 149, 163, 179, 181, 197, 199, 211, 229, 239, 241, 269, 281, 283, 293, 313, 317, 337, 349, 359, 379, 389, 397, 401, 409, 419, 421, 431, 439, 449, 463, 467, 479, 487, 491, 499, 509, 521, 523, 547, 569
Offset: 1
Keywords
Links
- Zak Seidov, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[Prime[Range[200]],!PrimeQ[#+6]&] (* Harvey P. Dale, Dec 21 2016 *)
-
PARI
forprime(p=2,600,if(!isprime(p+6),print1(p,","))) \\ Klaus Brockhaus, Aug 12 2008
Formula
Extensions
Corrected by R. J. Mathar and Klaus Brockhaus, Aug 12 2008
Comments