A153635 Primes of the form 4*x^3 + 27*y^2, with x positive or negative.
23, 31, 59, 139, 211, 239, 283, 419, 491, 499, 563, 643, 743, 751, 823, 1291, 1319, 1327, 1399, 1427, 1579, 1823, 1931, 2039, 2687, 2767, 3011, 3119, 3163, 3191, 3271, 3299, 3307, 3371, 3559, 3767, 3803, 3919, 4027, 4091, 4099, 4243, 4423, 4567, 4639
Offset: 1
Keywords
Examples
1427 = 4*(-694)^3 + 27*7037^2. - _Robert G. Wilson v_, Feb 17 2009
References
- G. H. Hardy and E. M. Wright, An Introduction to the Theory of Numbers, 6th Edition, Oxford Univ. Press, 2008, p. 595.
Links
- Andrew Granville, Different approaches to the distribution of primes, Milan Journal of Mathematics 78 (2009), pp. 1-25.
Crossrefs
Cf. A153636 (positive x only).
Programs
-
Mathematica
lst = {}; Do[ If[ z = 4x^3 + 27y^2; 0 < z < 10000 && PrimeQ@z, AppendTo[lst, z]; Print[{z, x, y}]], {y, 25000}, {x, -Floor[(27 y^2/4)^(1/3)], -Floor[(27 y^2/4)^(1/3)] + 100}]; Take[ Union@ lst, 45] (* Robert G. Wilson v, Feb 17 2009 *)
Extensions
a(23)-a(45) from Robert G. Wilson v, Feb 17 2009
Comment corrected by T. D. Noe, Jun 18 2009
Comments