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 A088549 #16 Sep 08 2022 08:45:12 %S A088549 2,7,3907,19609,66431,4288307,54066637,71270179,351925757,512604457, %T A088549 1178420167,24065769961,30763687627,48616590079,130674467449, %U A088549 229898795029,329720803007,363825386107,886352920147,2479006804507 %N A088549 Primes of the form x^5 + x^4 + x^3 + x^2 + x + 2. %H A088549 Vincenzo Librandi, <a href="/A088549/b088549.txt">Table of n, a(n) for n = 1..1000</a> %t A088549 Select[Table[Plus@@(x^Range[5])+2,{x,0,100}],PrimeQ] (* _Harvey P. Dale_, Jun 19 2021 *) %o A088549 (PARI) polypn(n,p) = { for(x=1,n, if(p%2,y=2,y=1); for(m=1,p, y=y+x^m; ); if(isprime(y),print1(y",")); ) } %o A088549 (Magma) [ a: n in [0..400] | IsPrime(a) where a is n^5 + n^4 + n^3 + n^2 + n + 2] %K A088549 nonn %O A088549 1,1 %A A088549 _Cino Hilliard_, Nov 17 2003