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!)
A182180 Semiprimes that become prime when their digits are sorted into nonincreasing order. 1

%I #29 May 17 2015 13:19:53

%S 14,34,35,38,118,119,121,133,134,142,143,145,146,166,194,214,215,218,

%T 314,334,341,346,358,361,365,377,386,395,398,413,415,437,451,473,514,

%U 517,538,583,614,634,635,671,734,737,778,779,791,799,818,835,838,878,893

%N Semiprimes that become prime when their digits are sorted into nonincreasing order.

%C Suggested by _Kevin L. Schwartz_.

%H Alois P. Heinz, <a href="/A182180/b182180.txt">Table of n, a(n) for n = 1..1000</a>

%e a(10) = 121 = 11*11, which becomes the prime 211 when its digits are sorted into nonincreasing order.

%p h:= proc(m) local k; for k from m+1 while isprime(k) or

%p add(i[2], i=ifactors(k)[2])<>2 do od; k

%p end:

%p a:= proc(n) option remember; local k;

%p k:= h(a(n-1));

%p do if isprime(parse(cat(sort(convert(k, base, 10), `>`)[])))

%p then return k else k:=h(k) fi

%p od

%p end: a(0):=0:

%p seq(a(n), n=1..80); # _Alois P. Heinz_, Apr 23 2012

%Y Cf. A000040, A001358, A115670 Semiprimes (A001358) whose digit reversal is prime, A182150 Semiprimes that are also semiprime when their digits are sorted into nondecreasing order.

%K nonn,base,easy

%O 1,1

%A _Jonathan Vos Post_, Apr 23 2012

%E More terms from _Alois P. Heinz_, Apr 23 2012

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 May 8 03:37 EDT 2024. Contains 372317 sequences. (Running on oeis4.)