A136276 Consider pairs of nonnegative integers (m,k) such that 2^2 + 4^2 + 6^2 + ... + (2m)^2 = k(k+1); sequence gives k values.
0, 4, 7, 84
Offset: 1
Examples
The known solutions are (m,k) = (0,0), (2,4), (3,7) and (17,84). There are no other solutions.
Links
- John Cannon, Using MAGMA to prove there are no other solutions
- J. H. Silverman and J. Tate, Rational Points on Elliptic Curves, Springer, 1992,
- R. J. Stroeker and B. M. M. de Weger, Solving elliptic Diophantine equations: the general cubic case, Acta Arith. 87 (1999), 339-365.
- R. J. Stroeker and N. Tzanakis, Solving elliptic Diophantine equations by estimating linear forms in elliptic logarithms, Acta Arith. 67 (1994), 177-196.
Programs
-
Maple
Simple-minded Maple program from N. J. A. Sloane: f1:=m-> 1+8*m*(m+1)*(2*m+1)/3; for m from 0 to 10^8 do if issqr(f1(m)) then lprint( m, (-1+sqrt(f1(m)))/2); fi; od;
Extensions
Edited by N. J. A. Sloane, May 25 2008, Aug 17 2008
May 26 2008: John Cannon used MAGMA to show there are no further solutions (see link)
Comments