OFFSET
1,1
COMMENTS
For any term a(n), all numbers of the form a(n)*10^3k, k >= 0, are in this sequence. Primitive terms, i.e., not of this form (or equivalently: without trailing '0'), are 343, 314432, 34012224, 442102433032, 30304210142233, 143121324002112, 333014302331144, ...
FORMULA
a(n) = A294664(n)^3.
EXAMPLE
343 is in the sequence because it is a cube, 343 = 7^3, and its largest digit is 4.
PROG
(PARI) for(n=1, 2e8, vecmax(digits(n^3))==4&&print1(n^3, ", "))
KEYWORD
nonn,base
AUTHOR
M. F. Hasler, Nov 12 2017
STATUS
approved