Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #12 Jun 26 2021 01:53:23
%S 0,1,2,4,6,7,8,9,10,11,12,14,16,17,18,19,20,21,22,24,26,27,28,29,35,
%T 40,41,42,44,46,47,48,49,53,60,61,62,64,66,67,68,69,70,71,72,74,76,77,
%U 78,79,80,81,82,84,86,87,88,89,90,91,92,94,96,97,98,99,100,101,102
%N Numbers whose base-10 representation has the same number of 3's and 5's.
%t Select[Range[0,200],DigitCount[#,10,3]==DigitCount[#,10,5]&] (* _Harvey P. Dale_, May 11 2021 *)
%K nonn,base,easy
%O 1,3
%A _Olivier GĂ©rard_