login
Numbers whose number of runs in the base-2 representation is congruent to 2 mod 4.
2

%I #10 Oct 04 2023 23:44:55

%S 2,4,6,8,12,14,16,24,28,30,32,42,48,56,60,62,64,74,82,84,86,90,96,106,

%T 112,120,124,126,128,138,146,148,150,154,162,164,166,168,172,174,178,

%U 180,182,186,192,202,210,212,214,218,224,234,240

%N Numbers whose number of runs in the base-2 representation is congruent to 2 mod 4.

%C All terms are even. - _Harvey P. Dale_, Sep 26 2018

%t Select[Range[2,250,2],Mod[Length[Split[IntegerDigits[#,2]]],4]==2&] (* _Harvey P. Dale_, Sep 26 2018 *)

%K nonn,base

%O 1,1

%A _Clark Kimberling_