login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A180561 Primes that cannot become a different prime under any mapping of some single decimal digit <=> with some other single decimal digit. 46
11, 11779, 22669, 23333, 33533, 55333, 74279, 77999, 78857, 80603, 84871, 88177, 88747, 97039, 103091, 112181, 119701, 125813, 128147, 131143, 133499, 141587, 158771, 159979, 164341, 166063, 173933, 175781, 219613, 220279, 222601, 227387, 229727, 231317, 238829 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Index to Primes, Primes that become a different prime under some mapping.
FORMULA
Complement of all the primes with the union of the sequences A175791, A175789, A180517 thru A180559.
MATHEMATICA
fQ[n_] := Block[{id = IntegerDigits@n}, (MemberQ[id, s[[1]]] || MemberQ[id, s[[2]]]) && PrimeQ[ FromDigits[id /. {s[[1]] -> s[[2]], s[[2]] -> s[[1]] }] ]]; t = Union@ Flatten@ Table[s = {j, k}; Select[ Prime@ Range@ 25000, fQ], {j, 0, 8}, {k, j + 1, 9}] ]]; Complement[ Prime@ Range@ 25000, t]
PROG
(Python)
from sympy import isprime
def m(s):
return [s.translate({ord(c):ord(d), ord(d):ord(c)}) for c in set(s) for d in "0123456789" if d != c]
def ok(n):
return isprime(n) and not any(isprime(int(t)) for t in m(str(n)))
print([k for k in range(10**6) if ok(k)]) # Michael S. Branicky, Oct 31 2023
CROSSREFS
Sequence in context: A228566 A228533 A088103 * A185538 A125545 A068137
KEYWORD
base,nonn
AUTHOR
EXTENSIONS
a(33) and beyond from Michael S. Branicky, Oct 31 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)