OFFSET
1,1
COMMENTS
The two bases b < c are encoded as one number (b-1)*10 + (c-1). Similar to A214427 which tabulates the single base for which A214423(n) is palindromic. In the first 1000 terms, the base pairs (2,4), (2,8), (3,9), and (4,8) are most common, occurring 148, 227, 166, and 94 times, respectively. The base pair (2,3) occurs only once.
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..10000 (first 1000 terms from T. D. Noe)
Attila Bérczes and Volker Ziegler, On simultaneous palindromes, arXiv 1403.0787, Mar 04 2014
Edray Herber Goins, Palindromes in different bases: a conjecture of J. Ernest Wilkins, Integers, Vol. 9 (2009), A55
MATHEMATICA
n = -1; t = {}; While[Length[t] < 100, n++; If[Count[c = Table[s = IntegerDigits[n, m]; s == Reverse[s], {m, 2, 10}], True] == 2, d = Flatten[Position[c, True]]; AppendTo[t, 10*d[[1]] + d[[2]]]]]; t
CROSSREFS
KEYWORD
nonn,base
AUTHOR
T. D. Noe, Mar 07 2014
STATUS
approved