A288632 Primes p such that (p+q)/6 is prime, q is the next prime after p.
5, 7, 13, 19, 37, 67, 89, 109, 127, 307, 379, 389, 449, 487, 499, 683, 719, 769, 877, 929, 937, 1009, 1163, 1297, 1523, 1559, 1567, 1831, 1933, 1979, 2153, 2213, 2221, 2269, 2389, 2459, 2659, 2803, 2857, 2909, 3037, 3089
Offset: 1
Keywords
Examples
5+7=6*2, 7+11=6*3, 13+17=6*5, 19+23=6*7, 37+41=6*11, 67+71=6*23.
Links
- Zak Seidov, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[Prime[Range[1000]], PrimeQ[(# + NextPrime[#])/6] &]
Comments