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!)
A108388 Transmutable primes: Primes with distinct digits d_i, i=1,m (2<=m<=4) such that simultaneously exchanging all occurrences of any one pair (d_i,d_j), i<>j results in a prime. 4

%I #9 Dec 15 2023 08:52:46

%S 13,17,31,37,71,73,79,97,113,131,179,191,199,313,331,337,773,911,919,

%T 1171,1933,3391,7717,9311,11113,11119,11177,11717,11933,33199,33331,

%U 77171,77711,77713,79999,97777,99991,113111,131111,131113,131171,131311

%N Transmutable primes: Primes with distinct digits d_i, i=1,m (2<=m<=4) such that simultaneously exchanging all occurrences of any one pair (d_i,d_j), i<>j results in a prime.

%C a(n) is a term iff a(n) is prime and binomial(m,2) 'transmutations' (see example) of a(n) are different primes. A083983 is the subsequence for m=2: one transmutation (The author of A083983, Amarnath Murthy, calls the result of such a digit-exchange a self-complement. {Because I didn't know until afterwards that this sequence was a generalization of A083983 and as this generalization always leaves some digits unchanged for m>2, I've chosen different terminology.}). A108389 ({1,3,7,9}) is the subsequence for m=4: six transmutations. Each a(n) corresponding to m=3 (depending upon its set of distinct digits) and having three transmutations is also a member of A108382 ({1,3,7}), A108383 ({1,3,9}), A108384 ({1,7,9}), or A108385 ({3,7,9}). The condition m>=2 only eliminates the repunit (A004022) and single-digit primes. The condition m<=4 is not a restriction because if there were more distinct digits, they would include even digits or the digit 5, in either case transmuting into a composite number. Some terms such as 1933 are reversible primes ("Emirps": A006567) and the reverse is also transmutable. The transmutable prime 3391933 has three distinct digits and is also a palindromic prime (A002385). The smallest transmutable prime having four distinct digits is A108389(0) = 133999337137 (12 digits).

%H Michael S. Branicky, <a href="/A108388/b108388.txt">Table of n, a(n) for n = 1..10000</a>

%e 179 is a term because it is prime and its three transmutations are all prime:

%e exchanging ('transmuting') 1 and 7: 179 ==> 719 (prime),

%e exchanging 1 and 9: 179 ==> 971 (prime) and

%e exchanging 7 and 9: 179 ==> 197 (prime).

%e (As 791 and 917 are not prime, 179 is not a term of A068652 or A003459 also.).

%e Similarly, 1317713 is transmutable:

%e exchanging all 1's and 3s: 1317713 ==> 3137731 (prime),

%e exchanging all 1's and 7s: 1317713 ==> 7371173 (prime) and

%e exchanging all 3s and 7s: 1317713 ==> 1713317 (prime).

%o (Python)

%o from gmpy2 import is_prime

%o from itertools import combinations, count, islice, product

%o def agen(): # generator of terms

%o for d in count(2):

%o for p in product("1379", repeat=d):

%o p, s = "".join(p), sorted(set(p))

%o if len(s) == 1: continue

%o if is_prime(t:=int(p)):

%o if all(is_prime(int(p.translate({ord(c):ord(d), ord(d):ord(c)}))) for c, d in combinations(s, 2)):

%o yield t

%o print(list(islice(agen(), 50))) # _Michael S. Branicky_, Dec 15 2023

%Y Cf. A108382, A108383, A108384, A108385, A108386, A108389 (transmutable primes with four distinct digits), A083983 (transmutable primes with two distinct digits), A108387 (doubly-transmutable primes), A006567 (reversible primes), A002385 (palindromic primes), A068652 (every cyclic permutation is prime), A003459 (absolute primes).

%K base,nonn

%O 1,1

%A _Rick L. Shepherd_, Jun 02 2005

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 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)