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 A127874 #5 Apr 30 2018 13:16:58 %S A127874 19,71,269,379,683,883,4663,6949,9883,12239,16433,21491,45631,66403, %T A127874 92683,125119,186733,211051,228383,256121,286019,296479,352619,389483, %U A127874 562589,578971,683983,721619,842759,930619,1150183,1230391,1372211 %N A127874 Prime numbers of the form (x^3)/2+(3x^2)/2+3x+3. %C A127874 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). %H A127874 Harvey P. Dale, <a href="/A127874/b127874.txt">Table of n, a(n) for n = 1..1000</a> %t A127874 a = {}; Do[If[PrimeQ[3 + 3 x + (3 x^2)/2 + x^3/2], AppendTo[a, 3 + 3 x + (3 x^2)/2 + x^3/2]], {x, 1, 300}]; a %t A127874 Select[Table[x^3/2+(3x^2)/2+3x+3,{x,150}],PrimeQ] (* _Harvey P. Dale_, Apr 30 2018 *) %Y A127874 Cf. A127873. %K A127874 nonn %O A127874 1,1 %A A127874 _Artur Jasinski_, Feb 04 2007