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 #16 Jun 24 2022 17:17:43
%S 211,223,479,521,631,673,809,1009,1213,1249,1319,1471,1511,1523,1543,
%T 1721,1801,1823,1901,2081,2111,2309,2411,2459,2591,2633,2789,2939,
%U 3061,3079,3181,3203,3271,3343,3359,3511,3571,3671,3943,4001,4091,4111,4409,4421
%N Upper prime of a difference of 12 between consecutive primes.
%H Harvey P. Dale, <a href="/A031931/b031931.txt">Table of n, a(n) for n = 1..1000</a>
%H <a href="/index/Pri#gaps">Index entries for primes, gaps between</a>
%t Select[Partition[Prime[Range[700]],2,1],#[[2]]-#[[1]]==12&][[All,2]] (* _Harvey P. Dale_, Dec 28 2018 *)
%o (PARI) isok(p) = isprime(p) && (p-precprime(p-1) == 12); \\ _Michel Marcus_, Jun 24 2022
%Y Cf. A031925 (difference of 6).
%K nonn
%O 1,1
%A _Jeff Burch_
%E Corrected and extended by _Harvey P. Dale_, Dec 28 2018