Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #9 Aug 11 2014 22:45:29
%S 43331,102701,110359,124367,142993,149629,156157,189067,191353,195599,
%T 203057,204173,220063,227303,231719,233777,243709,256219,268343,
%U 269791,296377,308153,311473,323273,329803,343831,361577,390893,402631,404713
%N Primes p such that q-p = 60, where q is the next prime after p.
%H M. F. Hasler, <a href="/A126771/b126771.txt">Table of n, a(n) for n = 1..28439</a> (all terms < 10^8).
%H <a href="/index/Pri#gaps">Index entries for primes, gaps between</a>
%t a = {}; Do[If[Prime[x + 1] - Prime[x] == 60, AppendTo[a, Prime[x]]], {x, 1, 10000}]; a
%o (PARI) g=60;c=o=0;forprime(p=1,default(primelimit),(-o+o=p)==g&write("c:/temp/b126771.txt",c++" "p-g))
%K nonn
%O 1,1
%A _RĂ©mi Eismann_, Feb 17 2007