OFFSET
1,3
COMMENTS
This sequence is infinite because it contains terms of the forms 4096^k-1 (k>=0) and 4096^k+1 (k>0). - Bruno Berselli, Sep 24 2018
LINKS
A.H.M. Smeets, Table of n, a(n) for n = 1..114 (first 70 terms from Rémy Sigrist)
EXAMPLE
4095 = 111111111111_2 = 333333_4 = 7777_8 = FFF_16. Hence 4095 is in the sequence.
MATHEMATICA
palQ[n_, b_] := PalindromeQ[IntegerDigits[n, b]];
Reap[Do[If[palQ[n, 2] && palQ[n, 4] && palQ[n, 8] && palQ[n, 16], Print[n]; Sow[n]], {n, 0, 10^6}]][[2, 1]] (* Jean-François Alcover, Sep 25 2018 *)
PROG
(Sage) [n for n in (0..100000) if Word(n.digits(2)).is_palindrome() and Word(n.digits(4)).is_palindrome() and Word(n.digits(8)).is_palindrome() and Word(n.digits(16)).is_palindrome()]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jeremias M. Gomes, Sep 24 2018
EXTENSIONS
a(19)-a(27) from Rémy Sigrist, Nov 15 2018
STATUS
approved