login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


a(n)=(1/2)*Sum{|d(i)-e(i)|} where Sum{d(i)*6^i} is the base 6 representation of n and e(i) are the digits d(i) in nondecreasing order.
2

%I #12 Dec 30 2023 16:50:26

%S 0,0,0,0,0,0,0,1,2,3,4,0,0,0,1,2,3,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,

%T 0,0,1,2,3,4,5,0,0,1,2,3,4,1,1,1,2,3,4,2,2,2,2,3,4,3,3,3,3,3,4,4,4,4,

%U 4,4,4,0,1,2,3,4,5,0,0,1,2,3,4,0,0,0,1,2,3,1

%N a(n)=(1/2)*Sum{|d(i)-e(i)|} where Sum{d(i)*6^i} is the base 6 representation of n and e(i) are the digits d(i) in nondecreasing order.

%p A037883 := proc(n)

%p local a,dgs,dgsE ;

%p a := 0 ;

%p dgs := convert(n,base,6);

%p dgsE := sort(dgs) ;

%p for i from 1 to nops(dgs) do

%p a := a+ abs(op(i,dgs)-op(i,dgsE)) ;

%p end do:

%p a/2 ;

%p end proc: # _R. J. Mathar_, Oct 19 2015

%K nonn,base

%O 1,9

%A _Clark Kimberling_

%E Definition swapped with A037874. - _R. J. Mathar_, Oct 19 2015

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 21 12:44 EDT 2024. Contains 376084 sequences. (Running on oeis4.)