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!)
A225035 Primes such that there is a nontrivial rearrangement of the digits which is a prime. 4

%I #58 Jan 22 2023 19:51:59

%S 13,17,31,37,71,73,79,97,101,103,107,109,113,127,131,137,139,149,157,

%T 163,167,173,179,181,191,193,197,199,239,241,251,271,277,281,283,293,

%U 307,311,313,317,331,337,347,349,359,367,373,379,389,397,401,419,421

%N Primes such that there is a nontrivial rearrangement of the digits which is a prime.

%C The new prime is necessarily different from the original prime (so 11, for example) is not a term. - _N. J. A. Sloane_, Jan 22 2023

%C Permutations producing leading zeros are allowed: thus 101 is in the sequence because a nontrivial permutation of its digits is 011. - _Robert Israel_, Aug 13 2019

%C It seems reasonable to expect that the proportion of n-digit primes that are in this sequence approaches 1 as n increases. - _Peter Munn_, Sep 13 2022

%D H.-E. Richert, On permutation prime numbers, Norsk. Mat. Tidsskr. 33 (1951), p. 50-53.

%D Joe Roberts, Lure of the Integers, Math. Assoc. of Amer., 1992, p. 293.

%D James J. Tattersall, Elementary Number Theory in Nine Chapters, Second Edition, Cambridge University Press, p. 121.

%H Robert Israel, <a href="/A225035/b225035.txt">Table of n, a(n) for n = 1..10000</a>

%e 13 is a term since a nontrivial permutation of its digits yields 31, which is also a prime.

%p dmax:=3: # for all terms of up to dmax digits

%p Res:= {}:

%p p:= 1:

%p do

%p p:= nextprime(p);

%p if p > 10^dmax then break fi;

%p L:= sort(convert(p,base,10),`>`);

%p m:= add(L[i]*10^(i-1),i=1..nops(L));

%p if assigned(A[m]) then

%p if ilog10(A[m])=ilog10(p) then

%p Res:= Res union {A[m], p}

%p else Res:= Res union {p}

%p fi

%p else A[m]:= p

%p fi

%p od:

%p sort(convert(Res,list)); # _Robert Israel_, Aug 13 2019

%t t={}; Do[p = Prime[n]; list1 = Permutations[IntegerDigits[p]]; If[Length[ Select[Table[FromDigits[n], {n,list1}], PrimeQ]] > 1, AppendTo[t,p]], {n,84}]; t

%o (Python)

%o from sympy import isprime

%o from itertools import permutations

%o def ok(n):

%o if not isprime(n): return False

%o perms = (int("".join(p)) for p in permutations(str(n)))

%o return any(isprime(t) for t in perms if t != n)

%o print([k for k in range(500) if ok(k)]) # _Michael S. Branicky_, Sep 14 2022

%o (PARI) is(p) = if(isprime(p), my(d=vecsort(digits(p))); d==vector(#d,x,1)&&return(1); forperm(d, e, my(c = fromdigits(Vec(e))); p!=c && isprime(c) && return(1))); \\ _Ruud H.G. van Tol_, Jan 22 2023

%Y Cf. A052902, A007933, A007935, A166681.

%Y See A055387, A359136-A359139 for other versions.

%K nonn,base

%O 1,1

%A _Jayanta Basu_, Apr 24 2013

%E Edited by _N. J. A. Sloane_, Jan 22 2023

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 August 9 10:09 EDT 2024. Contains 375040 sequences. (Running on oeis4.)