login
Numbers whose base-12 representation has the same nonzero number of 0's and 10's.
0

%I #12 Apr 24 2022 11:26:20

%S 120,154,264,298,408,442,552,586,696,730,840,874,984,1018,1128,1162,

%T 1272,1306,1416,1441,1442,1443,1444,1445,1446,1447,1448,1449,1451,

%U 1452,1464,1476,1488,1500,1512,1524,1536,1548,1572,1594,1704,1750

%N Numbers whose base-12 representation has the same nonzero number of 0's and 10's.

%t Select[Range[2000],DigitCount[#,12,0]==DigitCount[#,12,10]>0&] (* _Harvey P. Dale_, Apr 24 2022 *)

%K nonn,base,easy

%O 1,1

%A _Olivier GĂ©rard_