OFFSET
1,3
COMMENTS
Contains all terms of A069748, interpreted as base-11 numbers, and then converted to decimal. - Michael S. Branicky, Aug 06 2022
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..36
Patrick De Geest, World!Of Numbers, Palindromic cubes in bases 2 to 17.
MATHEMATICA
For[i = 1, i < 1000000, i++, tmp = IntegerDigits[i^3, 11]; If[tmp == Reverse[tmp], Print[i]]; ]; (* Sam Handler (sam_5_5_5_0(AT)yahoo.com), Aug 13 2006 *)
PROG
(PARI) isok(k) = my(d=digits(k^3, 11)); 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, 11))
print(list(islice(agen(), 17))) # Michael S. Branicky, Aug 02 2022
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
a(29) and beyond from Michael S. Branicky, Aug 07 2022
STATUS
approved