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 A127845 #18 May 25 2023 16:20:18 %S A127845 0,6,12,36,48,78,114,162,258,414,666,792,804,996,1044,1206,1308,1314, %T A127845 1356,1548,1584,1632,1734,1902,2106,2196,2214,2346,2358,2592,2634, %U A127845 2766,2808,2868,2892,2988,3072,3246,3432,3516,3576,3774,3894,3912,3996,4038 %N A127845 Numbers k such that k^2 + 5 and k^2 + 7 are twin primes. %C A127845 All terms are multiples of 6. Intersection of A114270 and A078402. %H A127845 Robert Israel, <a href="/A127845/b127845.txt">Table of n, a(n) for n = 1..7640</a> %p A127845 filter:= n -> isprime(n^2+5) and isprime(n^2+7): %p A127845 N:= 10000: # to get all entries <= 6*N %p A127845 A127845:= select(filter, [6*n $ n=0..N]); # _Robert Israel_, Apr 17 2014 %t A127845 Select[Range[0,5000,6],AllTrue[#^2+{5,7},PrimeQ]&] (* _Harvey P. Dale_, May 25 2023 *) %o A127845 (Magma) [n: n in [0..500] | IsPrime(n^2+5) and IsPrime(n^2+7)] // _Vincenzo Librandi_, Nov 23 2010 %Y A127845 Cf. A078402, A114270. %K A127845 nonn %O A127845 1,2 %A A127845 _Zak Seidov_, Apr 05 2007