OFFSET
1,1
COMMENTS
Numbers with more than one of these representations are repeated for each of them.
This concerns 1032 = 2^3+4^5 = 10^3+2^5 or 9504 = 12^3+6^5 = 21^3+3^5, for example (see A035046).
EXAMPLE
59=3^3+2^5, 157=5^3+2^5, 513=8^3+1^5, 586=7^3+3^5, ...
MATHEMATICA
lst={}; Do[Do[Do[If[x!=y, a=x^3+y^5; If[a>n, Break[]]; If[a==n, AppendTo[lst, n]]], {y, 5!}], {x, 5!}], {n, 7!}]; lst
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Joseph Stephan Orlovsky, Jan 23 2009
EXTENSIONS
Edited by R. J. Mathar, Mar 02 2009
STATUS
approved