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 A029962 #20 Aug 11 2024 14:41:30 %S A029962 0,1,2,3,4,6,88,252,282,626,676,1221,15751,18881,10088001,10400401, %T A029962 27711772,30322303,47633674,65977956,808656808,831333138,831868138, %U A029962 836131638,836181638,2512882152,2596886952,2893553982,6761551676 %N A029962 Palindromic in bases 5 and 10. %H A029962 Robert G. Wilson v, <a href="/A029962/b029962.txt">Table of n, a(n) for n = 1..79</a> %H A029962 P. De Geest, <a href="https://www.worldofnumbers.com/nobase10.htm">Palindromic numbers beyond base 10</a> %t A029962 NextPalindrome[n_] := Block[{l = Floor[ Log[10, n] + 1], idn = IntegerDigits[n]}, If[ Union[idn] == {9}, Return[n + 2], If[l < 2, Return[n + 1], If[ FromDigits[ Reverse[ Take[idn, Ceiling[l/2]] ]] FromDigits[ Take[idn, -Ceiling[l/2]]], FromDigits[ Join[ Take[idn, Ceiling[l/2]], Reverse[ Take[idn, Floor[l/2]] ]]], idfhn = FromDigits[ Take[idn, Ceiling[l/2]]] + 1; idp = FromDigits[ Join[ IntegerDigits[idfhn], Drop[ Reverse[ IntegerDigits[idfhn]], Mod[l, 2]] ]]] ]]]; palQ[n_Integer, base_Integer] := Block[{idn = IntegerDigits[n, base]}, idn == Reverse[idn]]; l = {0}; a = 0; Do[a = NextPalindrome[a]; If[ palQ[a, 5], AppendTo[l, a]], {n, 200000}]; l (* _Robert G. Wilson v_, Sep 30 2004 *) %t A029962 Select[Range[0, 10^5], %t A029962 PalindromeQ[#] && # == IntegerReverse[#, 5] &] (* _Robert Price_, Nov 09 2019 *) %Y A029962 Cf. A007632, A007633, A029961, A029963, A029964, A029965, A029966, A029967, A029968, A029969, A029970. %K A029962 nonn,base %O A029962 1,3 %A A029962 _Patrick De Geest_