cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

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

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 1, 2, 3, 0, 0, 0, 1, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 0, 0, 1, 2, 3, 1, 1, 1, 2, 3, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 0, 1, 2, 3, 4, 0, 0, 1, 2, 3, 0, 0, 0, 1, 2, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 0, 1, 2, 3, 4, 0, 0, 1, 2, 3, 0, 0, 0, 1, 2, 0
Offset: 1

Views

Author

Keywords

Comments

Starts to differ from A037846 at n=137 = 1022_5. -R. J. Mathar, Aug 05 2025

Programs

  • Maple
    A037882 := proc(n)
        local a,dgs,dgsE ;
        a := 0 ;
        dgs := convert(n,base,5);
        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

Extensions

Definition swapped with A037873. - R. J. Mathar, Oct 19 2015
Showing 1-1 of 1 results.