OFFSET
1,2
EXAMPLE
319^3 = 32461759, is the largest number with all different digits in its cube.
MATHEMATICA
Select[Range[10000], Length[IntegerDigits[ # ^3]] == Length[Union[IntegerDigits[ # ^3]]] &]
Select[Range[10000], Max[DigitCount[#^3]]==1&] (* Harvey P. Dale, May 01 2012 *)
CROSSREFS
KEYWORD
base,fini,full,nonn
AUTHOR
Tanya Khovanova, May 29 2007
STATUS
approved