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 A046260 #11 Sep 19 2022 02:03:57 %S A046260 1,2,4,8,6,3,6,8,6,5,4,8,9,9,8,8,55,131,262,242,8,9,9,838,777,55,88, %T A046260 77,545,9,737,474,949,858,717,383,767,9,77,888,777,255552,111,222,444, %U A046260 888,77,3553,767,21312,42624,99,737,474,9,797,575,8558,7117,646,606,939 %N A046260 Largest palindromic substring in 2^n. %H A046260 Michael S. Branicky, <a href="/A046260/b046260.txt">Table of n, a(n) for n = 0..10000</a> %F A046260 a(n) = A047813(A000079(n)). - _Michel Marcus_, Sep 19 2022 %e A046260 2^41 = 2199023{255552}. %o A046260 (Python) %o A046260 def c(s): return s[0] != "0" and s == s[::-1] %o A046260 def a(n): %o A046260 s = str(2**n) %o A046260 ss = (s[i:j] for i in range(len(s)) for j in range(i+1, len(s)+1)) %o A046260 return max(int(w) for w in ss if c(w)) %o A046260 print([a(n) for n in range(62)]) # _Michael S. Branicky_, Sep 18 2022 %Y A046260 Cf. A000079, A047813, A046268. %K A046260 nonn,base,easy %O A046260 0,2 %A A046260 _Patrick De Geest_, Jun 15 1998