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 A046484 #18 Aug 11 2024 14:41:31 %S A046484 2,3,5,7,11,353,787,94049,98689,190080091,3405684865043, %T A046484 397922151229793 %N A046484 Primes that are palindromic in bases 10 and 16. %C A046484 Intersection of A002385 and A029732. - _Michel Marcus_, Jun 09 2013 %H A046484 P. De Geest, <a href="https://www.worldofnumbers.com/palpri.htm">World!Of Palindromic Primes</a> %e A046484 787_10 = 313_16. - _Jon E. Schoenfield_, Apr 10 2021 %o A046484 (PARI) ispal(v) = {for(i=1, #v\2, if (v[i] != v[#v-i+1], return(0));); return(1);}; lista(nn) = {forprime(p=2, nn, if (ispal(digits(p, 10)) && ispal(digits(p, 16)), print1(p, ", ")););} \\ _Michel Marcus_, Jun 09 2013 %Y A046484 Cf. A002385, A029731. %K A046484 nonn,hard,base %O A046484 1,1 %A A046484 _Patrick De Geest_ and _Warut Roonguthai_ Aug 15 1998