login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A004186
Arrange digits of n in decreasing order.
41
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 21, 31, 41, 51, 61, 71, 81, 91, 20, 21, 22, 32, 42, 52, 62, 72, 82, 92, 30, 31, 32, 33, 43, 53, 63, 73, 83, 93, 40, 41, 42, 43, 44, 54, 64, 74, 84, 94, 50, 51, 52, 53, 54, 55, 65, 75, 85, 95, 60, 61, 62, 63, 64, 65, 66, 76, 86, 96, 70, 71, 72
OFFSET
0,3
COMMENTS
a(A009996(n)) = A009996(n). - Reinhard Zumkeller, Oct 31 2007
If we define "sortable primes" as prime numbers that remain prime when their digits are sorted in decreasing order, then all absolute primes (A003459) are sortable primes but not all sortable primes are absolute primes. For example, 113 is both sortable and absolute, and 313 is sortable but not absolute since its digits can be permuted to 133 = 7 * 19. - Alonso del Arte, Oct 05 2013
LINKS
FORMULA
n <= a(n) < 10n. - Charles R Greathouse IV, Aug 07 2024
EXAMPLE
a(19) = 91 because the digits of 19 being 1 and 9, arranged in decreasing order they are 9 and 1.
a(20) = 20 because the digits are already in decreasing order.
MAPLE
A004186 := proc(n)
local dgs;
convert(n, base, 10) ;
dgs := sort(%) ;
add( op(i, dgs)*10^(i-1), i=1..nops(dgs)) ;
end proc:
seq(A004186(n), n=0..20) ; # R. J. Mathar, Jul 26 2015
MATHEMATICA
sortDigitsDown[n_] := FromDigits@ Reverse@ Sort@ IntegerDigits@ n; Array[sortDigitsDown, 73, 0] (* Robert G. Wilson v, Aug 19 2011 *)
PROG
(PARI)
reconstruct(m) = {local(r); r=0; for(i=1, matsize(m)[2], r=r*10+m[i]); r}
A004186(n) = reconstruct(vecsort(digits(n), , 4))
\\ Michael B. Porter, Nov 11 2009
(PARI) a(n) = fromdigits(vecsort(digits(n), , 4)); \\ Joerg Arndt, Feb 24 2019
(Haskell)
import Data.List (sort)
a004186 = read . reverse . sort . show :: Integer -> Integer
-- Reinhard Zumkeller, Aug 19 2011
(Python)
def a(n): return int("".join(sorted(str(n), reverse=True)))
print([a(n) for n in range(73)]) # Michael S. Branicky, Feb 21 2021
KEYWORD
nonn,base,look,easy
EXTENSIONS
More terms from Reinhard Zumkeller, Oct 31 2007
STATUS
approved