%I #11 Jun 26 2021 06:46:39
%S 0,1,2,3,4,5,6,8,9,11,12,13,14,15,16,17,19,20,22,23,24,25,26,27,28,30,
%T 31,33,34,35,36,37,38,39,41,42,44,45,46,47,48,49,50,52,53,55,56,57,58,
%U 59,60,61,63,64,66,67,68,69,70,71,72,74,75,87,88,89,90,91,92,93
%N Numbers whose base-11 representation has the same number of 7's and 10's.
%t Select[Range[0,100],DigitCount[#,11,7]==DigitCount[#,11,10]&] (* _Harvey P. Dale_, Mar 23 2018 *)
%K nonn,base,easy
%O 1,3
%A _Olivier Gérard_
|