A127874 Prime numbers of the form (x^3)/2+(3x^2)/2+3x+3.
19, 71, 269, 379, 683, 883, 4663, 6949, 9883, 12239, 16433, 21491, 45631, 66403, 92683, 125119, 186733, 211051, 228383, 256121, 286019, 296479, 352619, 389483, 562589, 578971, 683983, 721619, 842759, 930619, 1150183, 1230391, 1372211
Offset: 1
Keywords
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
Crossrefs
Cf. A127873.
Programs
-
Mathematica
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 Select[Table[x^3/2+(3x^2)/2+3x+3,{x,150}],PrimeQ] (* Harvey P. Dale, Apr 30 2018 *)
Comments