OFFSET
1,3
LINKS
Patrick De Geest, World!Of Numbers, Palindromic cubes in bases 2 to 17.
MATHEMATICA
For[i = 1, i < 1000000, i++, tmp = IntegerDigits[i^3, 12]; If[tmp == Reverse[tmp], Print[i]]; ]; (* Sam Handler (sam_5_5_5_0(AT)yahoo.com), Aug 13 2006 *)
Select[Range[0, 52*10^8], IntegerDigits[#^3, 12]==Reverse[ IntegerDigits[ #^3, 12]]&] (* Harvey P. Dale, Mar 07 2018 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, May 15 1998
EXTENSIONS
More terms from Sam Handler (sam_5_5_5_0(AT)yahoo.com), Aug 13 2006
STATUS
approved