This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A031925 #15 Aug 09 2017 00:31:11 %S A031925 29,37,53,59,67,79,89,137,157,163,173,179,239,257,263,269,277,337,359, %T A031925 373,379,389,439,449,509,547,563,569,577,593,599,607,613,653,659,683, %U A031925 733,739,757,947,953,977,983,997,1019,1039,1069,1103,1109 %N A031925 Upper prime of a difference of 6 between consecutive primes. %H A031925 Charles R Greathouse IV, <a href="/A031925/b031925.txt">Table of n, a(n) for n = 1..10000</a> %H A031925 <a href="/index/Pri#gaps">Index entries for primes, gaps between</a> %p A031925 for i from 1 to 186 do if ithprime(i+1) = ithprime(i) + 6 then print({ithprime(i+1)}); fi; od; # _Zerinvary Lajos_, Mar 19 2007 %o A031925 (PARI) is(n)=nextprime(n-5)==n && isprime(n-6) \\ _Charles R Greathouse IV_, Apr 29 2015 %Y A031925 Cf. A031924. %K A031925 nonn %O A031925 1,1 %A A031925 _Jeff Burch_