A272815 Prime pairs of the form (p, p+16).
3, 19, 7, 23, 13, 29, 31, 47, 37, 53, 43, 59, 67, 83, 73, 89, 97, 113, 151, 167, 157, 173, 163, 179, 181, 197, 211, 227, 223, 239, 241, 257, 277, 293, 331, 347, 337, 353, 367, 383, 373, 389, 433, 449, 463, 479, 487, 503, 541, 557, 547, 563, 571
Offset: 1
Examples
The prime pairs are (3, 19), (7, 23), (13, 29) etc.
Links
- Seiichi Manyama, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Magma
&cat [[p,p+16]: p in PrimesUpTo(1000) | IsPrime(p+16)];
-
Mathematica
Flatten[{#, # + 16}&/@Select[Prime[Range[200]], PrimeQ[# + 16] &]]
Formula
a(2n+1) = A049488(n+1).
Comments