A098413 Greatest members p of prime triples (p-6, p-2, p).
13, 19, 43, 73, 103, 109, 199, 229, 283, 313, 463, 619, 829, 859, 883, 1093, 1303, 1429, 1453, 1489, 1669, 1699, 1789, 1873, 1879, 1999, 2089, 2143, 2383, 2689, 2713, 2803, 3169, 3259, 3463, 3469, 3853, 4159, 4519, 4789, 5233, 5419, 5443, 5653, 5659, 5743
Offset: 1
Keywords
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
- Eric Weisstein's World of Mathematics, Prime Triplet
Programs
-
Magma
[p: p in PrimesUpTo(6500)|IsPrime(p) and IsPrime(p-6) and IsPrime(p-2)]; // Vincenzo Librandi, Dec 26 2010
-
Mathematica
Transpose[Select[Partition[Prime[Range[800]],3,1],Differences[#] == {4,2}&]][[3]] (* Harvey P. Dale, Aug 21 2013 *)
Comments