OFFSET
1,2
EXAMPLE
512 becomes 125 which is also a cube.
MAPLE
filter:= proc(n) local d, x, y;
d:= ilog10(n);
x:= floor(n/10^d);
y:= n mod 10^d;
type(surd(10*y+x, 3), integer);
end proc:
select(filter, [seq(i^3, i=1..10^5)]); # Robert Israel, Aug 05 2020
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Amarnath Murthy, May 04 2001
EXTENSIONS
More terms from Erich Friedman, May 08 2001
Further terms from Larry Reeves (larryr(AT)acm.org), May 25 2001
More terms from Sean A. Irvine, Feb 17 2023
STATUS
approved