This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A238338 #17 Oct 30 2023 07:26:33 %S A238338 13,26,13,47,28,46,24,17,25,14,19,47,17,34,68,13,24,46,45,17,46,28,49, %T A238338 28,56,14,45,19,45,37,16,48,59,46,14,18,15,56,59,26,36,29,25,37,69,28, %U A238338 28,56,47,68,58,29,35,17,78,48,49,68,19,27,79,46,59,37,28,17 %N A238338 Encoded bases for which A214424(n) is palindromic. %C A238338 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. %H A238338 Giovanni Resta, <a href="/A238338/b238338.txt">Table of n, a(n) for n = 1..10000</a> (first 1000 terms from T. D. Noe) %H A238338 Attila Bérczes and Volker Ziegler, <a href="http://arxiv.org/abs/1403.0787">On simultaneous palindromes</a>, arXiv 1403.0787, Mar 04 2014 %H A238338 Edray Herber Goins, <a href="http://www.emis.de/journals/INTEGERS/papers/j55/j55.Abstract.html">Palindromes in different bases: a conjecture of J. Ernest Wilkins</a>, Integers, Vol. 9 (2009), A55 %t A238338 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 %Y A238338 Cf. A214423, A214424, A214427. %K A238338 nonn,base %O A238338 1,1 %A A238338 _T. D. Noe_, Mar 07 2014