A127880 Numbers x for which x^4 + 4x^3 + 12x^2 + 24x + 24 is prime.
43, 55, 103, 115, 223, 307, 319, 379, 403, 487, 505, 607, 643, 715, 757, 763, 775, 799, 883, 925, 979, 1063, 1069, 1135, 1147, 1165, 1189, 1279, 1309, 1369, 1543, 1567, 1585, 1627, 1693, 1729, 1783, 1813, 1819, 1855, 1903, 1939, 1945, 2083, 2149, 2155
Offset: 1
Keywords
Links
- G. C. Greubel, Table of n, a(n) for n = 1..5000
Crossrefs
Programs
-
GAP
Filtered([1..3000],x->IsPrime(x^4+4*x^3+12*x^2+24*x+24)); # Muniru A Asiru, Apr 30 2018
-
Maple
select(x->isprime(x^4+4*x^3+12*x^2+24*x+24),[$1..3000]); # Muniru A Asiru, Apr 30 2018
-
Mathematica
a = {}; Do[If[PrimeQ[24 + 24 x + 12 x^2 + 4 x^3 + x^4], AppendTo[a, x]], {x, 1, 1000}]; a
-
PARI
isok(x) = isprime(x^4 + 4*x^3 + 12*x^2 + 24*x + 24); \\ Michel Marcus, Apr 30 2018
Comments