OFFSET
1,1
REFERENCES
J. Leech, Some solutions of Diophantine equations, Proc. Camb. Phil. Soc., 53 (1957), 778-780, see p. 799.
H. W. Richmond, On integers which satisfy ..., Trans. Camb. Phil. Soc., 22 (1920), 389-403, see p. 402.
MATHEMATICA
sol[w_] := Reap[ Do[ If[ GCD[w, x, y, z] == 1 && w > Abs[x] > Abs[y] > Abs[z] && w^3 + x^3 + y^3 + z^3 == 0, Print[{w, x, y, z}]; Sow[{w, x, y, z}]; Break[]], {x, -w+1, -1}, {y, x+1, -1}, {z, y+1, -y-1}]][[2]]; Select[ Range[140], sol[#] =!= {} & ] (* Jean-François Alcover, Feb 24 2012 *)
CROSSREFS
KEYWORD
nonn,nice
AUTHOR
EXTENSIONS
More terms from David W. Wilson
STATUS
approved