login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

In base 9, (sum of even run lengths)=(sum of odd run lengths).
4

%I #6 Nov 26 2024 13:53:04

%S 730,731,732,733,734,735,736,737,739,749,759,769,779,789,799,809,811,

%T 812,813,814,815,816,817,818,828,829,831,832,833,834,835,836,837,838,

%U 839,841,842,843,844,845,846,847,848,849,851

%N In base 9, (sum of even run lengths)=(sum of odd run lengths).

%t Select[Range[1000],With[{lens=Length/@Split[IntegerDigits[#,9]]},Total[Select[lens,OddQ]]==Total[Select[lens,EvenQ]]]&] (* _Harvey P. Dale_, Nov 26 2024 *)

%K nonn,base

%O 1,1

%A _Clark Kimberling_