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!)
A107845 Transposable-digit primes: Primes such that if any single pair of adjacent digits is transposed the result is a prime. 4

%I #21 Sep 25 2019 09:28:05

%S 2,3,5,7,11,13,17,31,37,71,73,79,97,113,131,137,179,199,277,311,331,

%T 337,373,379,397,419,491,577,613,733,811,877,911,919,977,991,1013,

%U 1031,1091,1117,1213,1231,1579,1777,1811,1999,2113,2131,2399,2411,2677,2699,2719

%N Transposable-digit primes: Primes such that if any single pair of adjacent digits is transposed the result is a prime.

%C A single transposition error (of decimal digits) when recording or communicating such a prime still results in a prime (possibly the same prime). A003459 and A004022 (its subsequence) are subsequences. A003459 is also a subsequence of A068652.

%H Giovanni Resta, <a href="/A107845/b107845.txt">Table of n, a(n) for n = 1..5000</a> (first 3565 terms from Felix Fröhlich)

%e 137 is a term because it is prime and 173 and 317 are also prime.

%e 173 is not a term because 713 is not prime (even though 173 and 137 are prime). {Hence none of 137,173,317,371,713,731 is a term of A003459.}

%e 3119 is a term because it is prime and 1319 and 3191 are primes.

%e As 3119, 1193, 1931 and 9311 are all prime, 3119 is also a term of A068652.

%e Finally, although 1913 is also prime, neither 1139, 1391, 3911, 9113, nor 9131 is prime so 3119's twelve total permutations are not terms of A003459.

%t swap[lst_List, i_Integer] := Block[{lsu = lst}, ReplacePart[ lsu, {i -> lsu[[i + 1]], i + 1 -> lsu[[i]]}]]; fQ[n_] := Block[{id = IntegerDigits@ n, l = Floor@ Log10@ n}, And @@ Table[ PrimeQ@ FromDigits@ swap[id, j], {j, l}] == True]; Select[ Prime@ Range@ 500, fQ] (* _Robert G. Wilson v_, Nov 29 2014 *)

%o (PARI) eva(n) = subst(Pol(n), x, 10)

%o switchdigits(v, pos) = my(vt=v[pos]); v[pos]=v[pos+1]; v[pos+1]=vt; v

%o is(n) = my(d=digits(n)); for(k=1, #d-1, if(!ispseudoprime(eva(switchdigits(d, k))), return(0))); 1

%o forprime(p=1, , if(is(p), print1(p, ", "))) \\ _Felix Fröhlich_, Sep 21 2019

%Y Cf. A003459 (absolute primes), A004022 (repunit primes), A068652 (every cyclic permutation is prime).

%K base,nonn

%O 1,1

%A _Rick L. Shepherd_, May 24 2005

%E Offset changed from 0 to 1 by _Felix Fröhlich_, Sep 21 2019

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 25 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)