A156274 List of prime pairs of the form (p, p+6).
5, 11, 7, 13, 11, 17, 13, 19, 17, 23, 23, 29, 31, 37, 37, 43, 41, 47, 47, 53, 53, 59, 61, 67, 67, 73, 73, 79, 83, 89, 97, 103, 101, 107, 103, 109, 107, 113, 131, 137, 151, 157, 157, 163, 167, 173, 173, 179, 191, 197, 193, 199, 223, 229, 227, 233, 233, 239, 251, 257
Offset: 1
Examples
For p=5, p+6=11, (5,11); p=7, p+6=13, (7,13); p=11, p+6=17, (11,17)
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
Flatten[Select[{#, # + 6}&/@Prime[Range[100]], PrimeQ[Last[#]]&]] (* Vincenzo Librandi, Apr 06 2013 *)
Comments