OFFSET
1,1
COMMENTS
Cubes with trailing zeros are excluded.
LINKS
P. De Geest, Palindromic Cubes
Eric Weisstein's World of Mathematics, Cubic Number
EXAMPLE
1011^3 = 1033364331 -> 1334633301 = 1101^3.
1003333697667631 is included because its cube root, 100111, when reversed (i.e., 111001) and cubed yields 1367667963333001.
PROG
(PARI) isok(n) = {if (ispower(n, 3, &k), dn = digits(n); if (Vecrev(dn) != dn, dk = Vecrev(digits(k)); rk = subst(Pol(dk, x), x, 10); digits(rk^3) == Vecrev(dn); ); ); } \\ Michel Marcus, Oct 04 2015
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, Nov 15 1998
EXTENSIONS
More terms from Seiichi Manyama, Sep 18 2018
STATUS
approved