OFFSET
1,3
COMMENTS
Integers that become cubes when their digits d are replaced with d^3.
Sequence is infinite, since 10^(3*k) is a term for all k.
EXAMPLE
For m <= 9, 1-digit integers, A048390(m) = m^3 so all integers <= 9 are terms of this sequence.
PROG
(PARI) isok(n) = my(d = digits(n)); my(s = ""); for (k=1, #d, s = concat(s, Str(d[k]^3))); ispower(eval(s), 3);
(Magma) f:=func<n|StringToInteger(&cat[IntegerToString(h): h in Reverse([c^3: c in Intseq(n)])])>; [0] cat [k:k in [1..8000000]|IsPower(f(k), 3)]; // Marius A. Burtea, Feb 13 2020
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Michel Marcus, Nov 06 2016
EXTENSIONS
a(34)-a(38) from Jinyuan Wang, Feb 13 2020
STATUS
approved