OFFSET
1,1
COMMENTS
The distance to the nearest prime has to exceed 6 and equality is not allowed. - Stefan Steinerberger, May 02 2008
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
211-199=12 and 223-211=12.
293-283=10 and 307-293=14.
MATHEMATICA
q=6; s=""; For[i=1, i<12^2, p=Prime[i]; a=0; For[j=2, j<=q, If[PrimeQ[p-j]||PrimeQ[p+j], a=1; Break[]]; j=j+2]; If[a==0, s=s<>ToString[p]<>", "]; i++ ]; Print[s]
Prime[Select[Range[2, 1500], Prime[ # - 1] + 6 < Prime[ # ] < Prime[ # + 1] - 6 &]] (* Stefan Steinerberger, May 02 2008 *)
Transpose[Select[Partition[Prime[Range[400]], 3, 1], Min[ Differences[ #]]>6&]] [[2]] (* Harvey P. Dale, Feb 17 2012 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Joseph Stephan Orlovsky, Apr 29 2008
EXTENSIONS
More terms from Stefan Steinerberger, May 02 2008
Description edited by Ray Chandler, May 02 2009
STATUS
approved