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 A062288 #18 Jul 01 2018 17:54:39 %S A062288 2,5,7,9,10,15,16,17,24,26,28,30,32,35,40,41,43,49,51,55,56,60,66,69, %T A062288 72,76,77,87,94,98,102,103,104,108,116,120,123,124,126,128,135,137, %U A062288 140,144,148,154,160,161,164,166,170,171,185,190,192,194,195,201,206,220 %N A062288 Numbers k such that prime(k)+50 is also prime. %C A062288 "Numerical evidence makes it plausible that there are infinitely many primes p such that p + 50 is also prime." - Burton, p. 52. %D A062288 D. M. Burton, Elementary Number Theory, Allyn and Bacon, Inc., Boston, MA, 1976, pp. 52. %H A062288 Harry J. Smith, <a href="/A062288/b062288.txt">Table of n, a(n) for n = 1..1000</a> %t A062288 Select[Range[400],PrimeQ[Prime[#]+50]&] (* _Harvey P. Dale_, Mar 01 2011 *) %o A062288 (PARI) for(n=1,65, if(isprime(prime(n)+50),print(n))) %o A062288 (PARI) { n=m=0; forprime (p=2, 10^5, m++; if (isprime(p + 50), write("b062288.txt", n++, " ", m); if (n==1000, break)) ) } \\ _Harry J. Smith_, Aug 04 2009 %Y A062288 Cf. A062284. %K A062288 easy,nonn %O A062288 1,1 %A A062288 _Jason Earls_, Jul 02 2001 %E A062288 More terms from Larry Reeves (larryr(AT)acm.org), Jul 05 2001