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.

A180517 Primes that become a different prime under the mapping 0 <=> 2.

Original entry on oeis.org

23, 107, 127, 211, 223, 227, 241, 271, 283, 401, 421, 503, 523, 809, 829, 1009, 1013, 1021, 1031, 1049, 1091, 1097, 1103, 1109, 1123, 1129, 1201, 1213, 1229, 1231, 1249, 1291, 1297, 1301, 1307, 1321, 1327, 1409, 1429, 1601, 1607, 1621, 1627, 2003, 2011
Offset: 1

Views

Author

Zak Seidov and Robert G. Wilson v, Sep 09 2010

Keywords

Crossrefs

Programs

  • Mathematica
    fQ[n_] := Block[{id = IntegerDigits@n}, (MemberQ[id, 0] || MemberQ[id, 2]) && PrimeQ[ FromDigits[ id /. {0 -> 2, 2 -> 0}] ]]; Select[ Prime@ Range@ 350, fQ]