Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #9 Apr 23 2021 21:55:16
%S 1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,2,2,2,
%T 2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,
%U 2,2,1,2,2,2,2,2,2,2,2,2,1,2,3,3,3,3,3,3,3,3
%N Number of runs in base-9 representation of n.
%C Every positive integers occurs infinitely many times. See A297770 for a guide to related sequences.
%t b = 9; s[n_] := Length[Split[IntegerDigits[n, b]]];
%t Table[s[n], {n, 1, 200}]
%Y Cf. A297777 (number of distinct runs), A297770.
%K nonn,base
%O 0,10
%A _Clark Kimberling_
%E Updated by _Clark Kimberling_, Feb 04 2018