OFFSET
1,3
LINKS
Patrick De Geest, World!Of Numbers, Palindromic cubes in bases 2 to 17.
PROG
(PARI) isok(k) = my(d=digits(k^3, 8)); Vecrev(d) == d; \\ Michel Marcus, Aug 02 2022
(Python)
from itertools import count, islice
from sympy.ntheory import is_palindromic as ispal
def agen(start=0): yield from (k for k in count(start) if ispal(k**3, 8))
print(list(islice(agen(), 12))) # Michael S. Branicky, Aug 02 2022
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Patrick De Geest, May 15 1998
EXTENSIONS
More terms from Ryan Propper, May 30 2006
STATUS
approved