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 A123985 #9 Oct 11 2019 11:35:35 %S A123985 1,3,8,38,71,73,108,166,288,376,656,871,1156,1338,1618,1751,1776,1856, %T A123985 1921,1963,2311,2418,2801,3501,3538,3648,3818,4266,4541,4611,4651, %U A123985 5076,6723,6751,7388,7533,7621,7698,7738,7796,8083,8193,9073,9243,9418,9516 %N A123985 Numbers n for which 12n+1, 12n+5, 12n+7 and 12n+11 are primes. %H A123985 T. D. Noe, <a href="/A123985/b123985.txt">Table of n, a(n) for n=1..1000</a> %t A123985 Select[Range[10^4], And @@ PrimeQ /@ ({1, 5, 7, 11} + 12#) &] (* _Ray Chandler_, Nov 22 2006 *) %o A123985 (PARI) P=isprime; %o A123985 for(n=0, 10^5, if(P(12*n+1) && P(12*n+5) && P(12*n+7) && P(12*n+11), print1(n", "))); %o A123985 \\ _Joerg Arndt_, Jul 11 2014 %Y A123985 Cf. A110801. %K A123985 nonn %O A123985 1,2 %A A123985 _Artur Jasinski_, Oct 30 2006