login
A037872
(1/2)*Sum{|d(i)-e(i)|}, where Sum{d(i)*4^i} is base 4 representation of n and e(i) are digits d(i) in nonincreasing order, for i=0,1,...,m.
2
0, 0, 0, 1, 0, 0, 0, 2, 1, 0, 0, 3, 2, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 2, 1, 0, 0, 3, 2, 1, 0, 2, 2, 2, 2, 2, 1, 1, 1, 2, 1, 0, 0, 3, 2, 1, 0, 3, 3, 3, 3, 3, 2, 2, 2, 3, 2, 1, 1, 3, 2, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 3, 3, 2, 1, 2, 1, 1, 1, 1, 0, 0, 0, 2, 1, 0
OFFSET
1,8
MAPLE
A037872 := proc(n)
local a, dgs, dgsE ;
a := 0 ;
dgs := convert(n, base, 4);
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: A280605 A362427 A218253 * A037854 A362633 A091229
KEYWORD
nonn,base
EXTENSIONS
Definition swapped with A037881. - R. J. Mathar, Oct 19 2015
STATUS
approved