Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #14 Aug 28 2017 15:23:20
%S 97,367,397,409,457,487,499,691,709,727,751,769,919,937,991,1117,1171,
%T 1201,1381,1447,1531,1567,1579,1741,1831,1987,2011,2161,2221,2251,
%U 2281,2467,2539,2617,2671,2707,2749,2851,2887,2917,3019,3049
%N Upper prime of a difference of 8 between consecutive primes.
%H Harvey P. Dale, <a href="/A031927/b031927.txt">Table of n, a(n) for n = 0..1000</a>
%H <a href="/index/Pri#gaps">Index entries for primes, gaps between</a>
%p for i from 1 to 440 do if ithprime(i+1) = ithprime(i) + 8 then print({ithprime(i+1)}); fi; od; # _Zerinvary Lajos_, Mar 19 2007
%t Select[Partition[Prime[Range[500]],2,1],#[[2]]-#[[1]]==8&][[All,2]] (* _Harvey P. Dale_, Aug 28 2017 *)
%K nonn
%O 0,1
%A _Jeff Burch_