login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A127875
Numbers x for which (x^3)/2+(3x^2)/2+3x+3 is prime.
6
2, 4, 7, 8, 10, 11, 20, 23, 26, 28, 31, 34, 44, 50, 56, 62, 71, 74, 76, 79, 82, 83, 88, 91, 103, 104, 110, 112, 118, 122, 131, 134, 139, 140, 142, 148, 152, 163, 170, 175, 176, 179, 199, 202, 206, 226, 227, 235, 238, 239, 242, 244, 266, 271, 274, 278, 296, 299
OFFSET
1,1
COMMENTS
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).
MATHEMATICA
a = {}; Do[If[PrimeQ[3 + 3 x + (3 x^2)/2 + x^3/2], AppendTo[a, x]], {x, 1, 300}]; a
CROSSREFS
Sequence in context: A325419 A139212 A175282 * A056231 A248637 A131346
KEYWORD
nonn
AUTHOR
Artur Jasinski, Feb 04 2007
STATUS
approved