OFFSET
1,1
COMMENTS
Old name was: Primes p(k) such that p(k+2)-p(k+1)=p(k+1)-p(k)=36.
LINKS
Zak Seidov, Table of n, a(n) for n = 1..3000
EXAMPLE
a(3)=704321 is followed by 704357 and 704393, consecutive primes with equal distance of d=36.
MATHEMATICA
Select[Partition[Prime[Range[255000]], 3, 1], Differences[#]=={36, 36}&][[All, 1]] (* Harvey P. Dale, Feb 16 2018 *)
PROG
(PARI) is(n)=nextprime(n+1)==n+36 && nextprime(n+37)==n+72 && isprime(n) \\ Charles R Greathouse IV, Jan 07 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Jan 28 2000
EXTENSIONS
New name from Charles R Greathouse IV, Jan 07 2013
STATUS
approved