OFFSET
1,3
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..64
EXAMPLE
55 is in the sequence because 55_10 = 131_6 = 313_4.
MATHEMATICA
(* first load nthPalindromeBase from A002113 *) palQ[n_Integer, base_Integer] := Block[{}, Reverse[ idn = IntegerDigits[n, base]] == idn]; k = 0; lst = {}; While[k < 21000000, pp = nthPalindromeBase[k, 6]; If[palQ[pp, 4], AppendTo[lst, pp]; Print[pp]]; k++]; lst
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Eric A. Schmidt and Robert G. Wilson v, Jul 15 2015
STATUS
approved