OFFSET
1,1
COMMENTS
For any term a(n), all numbers of the form a(n)*10^k, k >= 0, are in this sequence. We could call "primitive" the terms not of this form, i.e., without trailing '0'.
EXAMPLE
13 is in the sequence because the largest digit of 13^3 = 2197 is 9.
MATHEMATICA
Select[Range[200], Max[IntegerDigits[#^3]]==9&] (* Harvey P. Dale, Jul 08 2018 *)
PROG
(PARI) for(n=1, 200, vecmax(digits(n^3))==9&&print1(n", "))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
M. F. Hasler, Nov 13 2017
STATUS
approved