cp's OEIS Frontend

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.

A046481 Primes that are palindromic in bases 10 and 13.

Original entry on oeis.org

2, 3, 5, 7, 11, 313, 353, 797
Offset: 1

Views

Author

Patrick De Geest, Aug 15 1998

Keywords

Examples

			313_10 = 1b1_13, where b represents eleven as a single digit.
		

Crossrefs

Programs

  • Mathematica
    Select[Prime[Range[150]],PalindromeQ[#]&&IntegerDigits[#,13]==Reverse[IntegerDigits[#,13]]&] (* Harvey P. Dale, Apr 15 2025 *)