A127875 Numbers x for which (x^3)/2+(3x^2)/2+3x+3 is prime.
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
Keywords
Programs
-
Mathematica
a = {}; Do[If[PrimeQ[3 + 3 x + (3 x^2)/2 + x^3/2], AppendTo[a, x]], {x, 1, 300}]; a
Comments