login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A046235
Numbers whose cube is palindromic in base 6.
1
0, 1, 7, 37, 217, 1297, 7777, 46657, 279937, 1679617, 10077697, 60466177, 362797057, 860627456, 2176782337
OFFSET
1,3
COMMENTS
Note that '7777' is itself a palindrome, even a repdigit !
Next term is >10000000000. - Sam Handler (sam_5_5_5_0(AT)yahoo.com), Aug 09 2006
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, 6]; If[tmp == Reverse[tmp], Print[i]]]; (* Sam Handler (sam_5_5_5_0(AT)yahoo.com), Aug 09 2006 *)
PROG
(PARI) isok(k) = my(d=digits(k^3, 6)); 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, 6))
print(list(islice(agen(), 10))) # Michael S. Branicky, Aug 02 2022
CROSSREFS
Cf. A046236.
Sequence in context: A255672 A077239 A362087 * A297329 A347726 A339686
KEYWORD
nonn,more,base
AUTHOR
Patrick De Geest, May 15 1998
EXTENSIONS
More terms from Sam Handler (sam_5_5_5_0(AT)yahoo.com), Aug 09 2006
STATUS
approved

  NODES
COMMUNITY 1
INTERN 1
Note 1