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.

A075236 Primes whose base 6 reversal is also prime.

Original entry on oeis.org

2, 3, 5, 7, 11, 31, 37, 41, 43, 53, 59, 61, 67, 71, 181, 191, 193, 197, 199, 211, 227, 233, 257, 263, 271, 277, 281, 293, 307, 311, 313, 317, 331, 337, 349, 359, 367, 373, 379, 383, 389, 431, 1087, 1093, 1103, 1109, 1117, 1123, 1153, 1187, 1193, 1201, 1213
Offset: 1

Views

Author

Robert G. Wilson v, Sep 09 2002

Keywords

Crossrefs

Programs

  • Mathematica
    Prime[ Select[ Range[200], PrimeQ[ FromDigits[ Reverse[ IntegerDigits[ Prime[ # ], 6]], 6]] &]]
    Select[Prime[Range[200]],PrimeQ[FromDigits[Reverse[IntegerDigits[#,6]],6]]&] (* Harvey P. Dale, Oct 12 2023 *)