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 A174157 #8 Sep 08 2022 08:45:51 %S A174157 95,302,443,546,755,850,878,962,983,988,1014,1026,1349,1433,1541,1711, %T A174157 1735,1897,1901,1958,1961,1966,2052,2058,2070,2096,2142,2167,2170, %U A174157 2208,2333,2421,2471,2490,2503,2527,2571,2637,2643,2813,2820,2885,2994 %N A174157 Numbers n such that n^64+(n+1)^64 is a prime. %H A174157 Vincenzo Librandi, <a href="/A174157/b174157.txt">Table of n, a(n) for n = 1..200</a> %t A174157 lst={}; Do[If[PrimeQ[n^64+(n+1)^64], AppendTo[lst, n]], {n, 3000}]; lst (* Vincenzo Librandi_, Aug 31 2012 *) %t A174157 Position[Total/@Partition[Range[3000]^64,2,1],_?(PrimeQ[#]&)]//Flatten (* _Harvey P. Dale_, Aug 01 2021 *) %o A174157 (Magma) [n: n in [0..2000] | IsPrime(n^64+(n+1)^64)] %Y A174157 Cf. A153504, A154535, A155211. %K A174157 nonn,easy %O A174157 1,1 %A A174157 _Vincenzo Librandi_, Mar 10 2010