login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

Numbers whose base-6 representation has the same number of 0's, 2's and 5's.
0

%I #12 Apr 30 2022 11:02:20

%S 1,3,4,7,9,10,19,21,22,25,27,28,43,45,46,55,57,58,61,63,64,77,102,115,

%T 117,118,127,129,130,133,135,136,151,153,154,163,165,166,169,171,172,

%U 182,192,233,248,259,261,262,271,273,274,277,279,280,293,318,331,333

%N Numbers whose base-6 representation has the same number of 0's, 2's and 5's.

%t Select[Range[400],DigitCount[#,6,0]==DigitCount[#,6,2]==DigitCount[#,6,5]&] (* _Harvey P. Dale_, Apr 30 2022 *)

%Y Cf. A007092.

%K nonn,base,easy

%O 1,2

%A _Olivier GĂ©rard_