login
A037874
(1/2)*Sum{|d(i)-e(i)|}, where Sum{d(i)*6^i} is base 6 representation of n and e(i) are digits d(i) in nonincreasing order, for i=0,1,...,m.
2
0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 3, 2, 1, 0, 0, 0, 4, 3, 2, 1, 0, 0, 5, 4, 3, 2, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 3, 2, 1, 0, 0, 0, 4, 3, 2, 1, 0, 0, 5, 4, 3, 2, 1, 0, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 2, 1, 0, 0, 0, 0, 3
OFFSET
1,12
COMMENTS
Starts to differ from A037856 at n=220 = 1010_6. - R. J. Mathar, Aug 05 2025
MAPLE
A037874 := proc(n)
local a, dgs, dgsE ;
a := 0 ;
dgs := convert(n, base, 6);
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: A035195 A073797 A037856 * A343870 A339070 A352553
KEYWORD
nonn,base
EXTENSIONS
Definition swapped with A037883. - R. J. Mathar, Oct 19 2015
STATUS
approved