A134107 Complete list of solutions to y^2 = x^3 - 207; sequence gives x values.
6, 12, 18, 31, 312, 331, 367806
Offset: 1
Programs
-
Magma
Sort([ p[1] : p in IntegralPoints(EllipticCurve([0, -207])) ]); /* adapted from A029728 */
-
SageMath
[i[0] for i in EllipticCurve([0, -207]).integral_points()] # Seiichi Manyama, Aug 25 2019
Comments