A029728 Complete list of solutions to y^2 = x^3 + 17; sequence gives x values.
-2, -1, 2, 4, 8, 43, 52, 5234
Offset: 1
References
- L. J. Mordell, Diophantine Equations, Ac. Press, p. 246.
- T. Nagell, Einige Gleichungen von der Form ay^2+by+c=dx^3, Vid. Akad. Skrifter Oslo, Nr. 7 (1930).
- Silverman, Joseph H. and John Tate, Rational Points on Elliptic Curves. New York: Springer-Verlag, 1992.
Crossrefs
Programs
-
Magma
Sort([ p[1] : p in IntegralPoints(EllipticCurve([0,17])) ]); // Sergei Haller (sergei(AT)sergei-haller.de), Dec 21 2006
-
Mathematica
ok[x_] := Reduce[y>0 && y^2 == x^3 + 17, y, Integers] =!= False; Select[Table[x, {x, -2, 10000}], ok ] (* Jean-François Alcover, Sep 07 2011 *)
-
SageMath
[i[0] for i in EllipticCurve([0, 17]).integral_points()] # Seiichi Manyama, Aug 25 2019
Comments