A309071 Complete list of solutions to y^2 = x^3 + 20*x; sequence gives x values.
0, 4, 5, 720
Offset: 1
Examples
0^3 + 20* 0 = 0 = 0^2. 4^3 + 20* 4 = 144 = 12^2. 5^3 + 20* 5 = 225 = 15^2. 720^3 + 20*720 = 373262400 = 19320^2.
Programs
-
PARI
for(k=0, 1e5, if(issquare(k*(k^2+20)), print1(k", ")))
-
SageMath
[i[0] for i in EllipticCurve([20, 0]).integral_points()] # Seiichi Manyama, Aug 25 2019
Comments