login
A037817
Number of i such that d(i) <= d(i-1), where Sum_{i=0..m} d(i)*10^i is the base-10 representation of n.
10
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0
OFFSET
1,1
COMMENTS
Equivalently, number of nonnegative terms in the first differences of the digits of the decimal representation of n. - Paolo Xausa, Nov 19 2025
LINKS
MAPLE
A037817 := proc(n)
a := 0 ;
dgs := convert(n, base, 10);
for i from 2 to nops(dgs) do
if op(i, dgs)<=op(i-1, dgs) then
a := a+1 ;
end if;
end do:
a ;
end proc: # R. J. Mathar, Oct 16 2015
MATHEMATICA
A037817[n_] := Count[Differences[IntegerDigits[n]], _?NonNegative];
Array[A037817, 100] (* Paolo Xausa, Nov 19 2025 *)
PROG
(MATLAB) n = 1:10000; a = arrayfun(@(m) sum(diff(num2str(m)-'0')>=0), n); % Chris R. Rehmann, Nov 18 2025
KEYWORD
nonn,base,easy
EXTENSIONS
Sign in name corrected by R. J. Mathar, Oct 16 2015
STATUS
approved