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 A181114 #16 Sep 08 2022 08:45:54 %S A181114 62244,139230,171990,1010100,1029210,1275456,1320774,1353534,1356810, %T A181114 1433796,1722630,1842750,2131584,2300844,2396940,2890524,2915094, %U A181114 3357354,3579030,3625440,3631446,4165980,4392024,4408950,4518150 %N A181114 Numbers n > 0 such that n^6 + 1091 and n^6 + 1093 are both prime. %t A181114 tpQ[n_]:=Module[{x=n^6+1091},PrimeQ[x]&&PrimeQ[x+2]] %t A181114 Select[Range[5000000],tpQ] (* _Harvey P. Dale_, Feb 17 2011 *) %o A181114 (Magma) IsA181114:=func< n | IsPrime(k+1091) and IsPrime(k+1093) where k is n^6 >; [ n: n in [1..5000000] | IsA181114(n) ]; // _Klaus Brockhaus_, Feb 17 2011 %Y A181114 Cf. A001014, A066386. %K A181114 nonn %O A181114 1,1 %A A181114 _Jason Earls_, Oct 04 2010