%I #7 Aug 23 2016 10:34:44
%S 4,6,7,8,9,11,12,13,14,16,20,22,23,26,31,32,37,40,41,43,47,48,53,58,
%T 60,61,62,64,80,84,86,87,90,95,106,127,128,149,160,165,168,169,171,
%U 175,191,192,213,234,240,245,250,252,253,254,256
%N Numbers n such that number of runs in the base 4 representation of n is congruent to 2 mod 8.
%t Select[Range[300],Mod[Length[Split[IntegerDigits[#,4]]],8]==2&] (* _Harvey P. Dale_, Aug 23 2016 *)
%K nonn,base
%O 1,1
%A _Clark Kimberling_