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 A127875 #3 Mar 31 2012 10:22:04 %S A127875 2,4,7,8,10,11,20,23,26,28,31,34,44,50,56,62,71,74,76,79,82,83,88,91, %T A127875 103,104,110,112,118,122,131,134,139,140,142,148,152,163,170,175,176, %U A127875 179,199,202,206,226,227,235,238,239,242,244,266,271,274,278,296,299 %N A127875 Numbers x for which (x^3)/2+(3x^2)/2+3x+3 is prime. %C A127875 Generating polynomial is Schur's polynomial of degree 3. Schur's polynomials n degree are n-th first term of series expansion of e^x function. All polynomials are non-reducible and belonging to the An alternating Galois transitive group if n is divisible by 4 or to Sn symmetric Galois Group in other case (proof Schur, 1930). %t A127875 a = {}; Do[If[PrimeQ[3 + 3 x + (3 x^2)/2 + x^3/2], AppendTo[a, x]], {x, 1, 300}]; a %Y A127875 Cf. A127873, A127874. %K A127875 nonn %O A127875 1,1 %A A127875 _Artur Jasinski_, Feb 04 2007