OFFSET
1,1
COMMENTS
If x is in the sequence, then so is c^15 x for positive integers c, since if (x,y,z) is a solution, so is (c^15 x, c^6 y, c^10 z). - Robert Israel, Jul 26 2017
EXAMPLE
The first 5 solutions are (x,y,z) = (10,3,7), (1242,9,117), (1024,16,128), (5632,16,320) and (20480,32,768).
MATHEMATICA
For[z=1, True, z++, z3=z^3; For[y=1, (d=z3-y^5)>0, y++, If[IntegerQ[x=Sqrt[d]], Print[{x, y, z}]]]]
CROSSREFS
KEYWORD
nonn
AUTHOR
Dean Hickerson and Dan Asimov (asimov(AT)msri.org), Apr 18 2002
STATUS
approved