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”).

A037887
a(n)=(1/2)*Sum{|d(i)-e(i)|} where Sum{d(i)*10^i} is the base 10 representation of n and e(i) are the digits d(i) in nondecreasing order.
3
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0
OFFSET
1,13
MAPLE
A037887 := proc(n)
local a, dgs, dgsE ;
a := 0 ;
dgs := convert(n, base, 10);
dgsE := sort(dgs) ;
for i from 1 to nops(dgs) do
a := a+ abs(op(i, dgs)-op(i, dgsE)) ;
end do:
a/2 ;
end proc: # R. J. Mathar, Oct 19 2015
CROSSREFS
Sequence in context: A075011 A283001 A037851 * A207505 A235049 A031087
KEYWORD
nonn,base
EXTENSIONS
Definition swapped with A037878. - R. J. Mathar, Oct 19 2015
STATUS
approved