A204805 Primes followed by a gap of 170 = nextprime(p)-p.
27915737, 65069327, 80935103, 84549821, 98253527, 99099773, 105886883, 110597483, 117317297, 124956059, 130389293, 134944361, 139040903, 140217647, 140566253, 153207191, 156479129, 162973457, 182754569, 189599393, 190864901
Offset: 1
Keywords
Programs
-
Mathematica
Transpose[Select[Partition[Prime[Range[11000000]],2,1],#[[2]]-#[[1]] == 170&]][[1]] (* Harvey P. Dale, Apr 25 2012 *)
-
PARI
list_gaps(g=170,f,N=100)={my(p=0); for(c=1, N, while(g+p!=p=nextprime(p+1), ); if(f,write(f".txt",c" ",p-g),print1(", "p-g)))}