OFFSET
1,1
COMMENTS
The sequence is infinite since for every element k with '0' as last digit or no '0' at all every k*10^m is also in it.
EXAMPLE
13798 is okay, since it has five different digits while 13798^3 = 2626929525592 has only four.
MATHEMATICA
Select[Range[150000], Count[DigitCount[#], 0]<Count[DigitCount[#^3], 0]&] (* Harvey P. Dale, Apr 22 2016 *)
PROG
(PARI) isok(n) = length(Set(digits(n, 10))) > length(Set(digits(n^3, 10))) \\ Michel Marcus, Jul 22 2013
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Ulrich Schimke (ulrschimke(AT)aol.com), Jun 08 2001
EXTENSIONS
Corrected and extended by Harvey P. Dale, Apr 22 2016
STATUS
approved