A156323 List of prime pairs of the form (p, p+12).
5, 17, 7, 19, 11, 23, 17, 29, 19, 31, 29, 41, 31, 43, 41, 53, 47, 59, 59, 71, 61, 73, 67, 79, 71, 83, 89, 101, 97, 109, 101, 113, 127, 139, 137, 149, 139, 151, 151, 163, 167, 179, 179, 191, 181, 193, 199, 211, 211, 223, 227, 239, 229, 241, 239, 251, 251, 263, 257
Offset: 1
Examples
For p=5, 5+12=17, (5,17); p=59, 59+12=71, (59,71)
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
Flatten[Select[{#,#+12}&/@Prime[Range[100]], PrimeQ[Last[#]]&]] (* Harvey P. Dale, Mar 23 2011 *)