A124594 Primes p such that q-p = 26, where q is the next prime after p.
2477, 3137, 5531, 11213, 12011, 12347, 14897, 16007, 16493, 16703, 20297, 24443, 26267, 26513, 29033, 29501, 31193, 32843, 34781, 35543, 35771, 36161, 36497, 36947, 37061, 38993, 39581, 40361, 40433, 43067, 44657, 46523, 48131, 48497, 49757, 52583, 53327
Offset: 1
Keywords
Links
- Remi Eismann, Table of n, a(n) for n = 1..10000
- K. Soundararajan, Small gaps between prime numbers: the work of Goldston-Pintz-Yildirim, Bull. Amer. Math. Soc., 44 (2007), 1-18.
- Index entries for primes, gaps between
Programs
-
Mathematica
Select[Partition[Prime[Range[6000]],2,1],#[[2]]-#[[1]]==26&][[All,1]] (* Harvey P. Dale, Jan 01 2017 *)