OFFSET
1,2
COMMENTS
1 and 8, as Fibonacci numbers, are also members of A272827.
There are many squares whose digits are powers of 2: 1,4,81,121,144, to name just a few; there are 102 of them up to 10^12. In contrast, there are very few such cubes, only 3 up to 10^18.
Probably this sequence is finite; further terms have at least 31 digits. - Charles R Greathouse IV, May 19 2016
EXAMPLE
21811182184 is a term as its digits are only powers of 2; its cube root is 2794.
MATHEMATICA
Select[Range[1000000]^3, SubsetQ[{1, 2, 4, 8}, IntegerDigits@#]&]
PROG
(PARI) is(n)=ispower(n, 3) && #setintersect(Set(digits(n)), [0, 3, 5, 6, 7, 9])==0 \\ Charles R Greathouse IV, May 08 2016
CROSSREFS
KEYWORD
nonn,bref,more,base
AUTHOR
Waldemar Puszkarz, May 07 2016
STATUS
approved