OFFSET
1,1
COMMENTS
For any term a(n), all numbers of the form a(n)*10^k, k >= 0, are in this sequence. Primitive terms, i.e., not of this form (or equivalently: without trailing '0'), are 7, 68, 324, 7618, 31177, 52308, 69314, 353068, 756658, 1039247, 2715974, 2732441, 3511617, 4689368, 7571814, 12811968, 15904541, ...
All terms have last nonzero digit 1, 4, 7 or 8 and leading digit <= 7. - Robert Israel, Nov 13 2017
The number formed by the first m digits of a term is always less than c*10^m with c = (4/9)^(1/3) = .7631428283688879... - M. F. Hasler, Nov 13 2017
EXAMPLE
7 is in the sequence because the largest digit of 7^3 = 343 is 4.
MAPLE
select(n -> max(convert(n^3, base, 10))=4, [$1..10^6]); # Robert Israel, Nov 13 2017
PROG
(PARI) for(n=1, 2e8, vecmax(digits(n^3))==4&&print1(n", "))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
M. F. Hasler, Nov 12 2017
STATUS
approved