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 A065510 #11 May 20 2019 14:43:40 %S A065510 2,3,5,11,37,43,47,71,131,157,223,251,257,307,487,641,1087,1093,1187, %T A065510 1291,1433,1567,1621,1637,1831,1873,1901,2017,2111,2143,2293,2333, %U A065510 2473,2621,2663,2683,2707,2777,2843,2903,3257,3413,3463,3613,3617,3761,3793 %N A065510 Primes p such that p^4 - p^3 + p^2 - p + 1 is prime. %H A065510 Harry J. Smith, <a href="/A065510/b065510.txt">Table of n, a(n) for n = 1..1000</a> %t A065510 Select[Prime[Range[600]],PrimeQ[#^4-#^3+#^2-#+1]&] (* _Harvey P. Dale_, May 20 2019 *) %o A065510 (PARI) { n=0; for (m=1, 10^9, p=prime(m); if (isprime(p^4 - p^3 + p^2 - p + 1), write("b065510.txt", n++, " ", p); if (n==1000, return)) ) } \\ _Harry J. Smith_, Oct 20 2009 %Y A065510 Cf. A053182. %K A065510 easy,nonn %O A065510 1,1 %A A065510 _Vladeta Jovovic_, Nov 26 2001