login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Numbers whose base-5 representation contains exactly one 2 and two 3's.
0

%I #14 May 16 2023 22:06:29

%S 68,88,92,193,213,217,268,293,328,333,340,341,344,348,368,388,392,413,

%T 417,428,433,440,441,444,448,452,457,460,461,464,472,488,492,568,588,

%U 592,693,713,717,818,838,842,893,918,953,958

%N Numbers whose base-5 representation contains exactly one 2 and two 3's.

%t Select[Range[1000],DigitCount[#,5,2]==1&&DigitCount[#,5,3]==2&] (* _Harvey P. Dale_, Aug 04 2019 *)

%Y Cf. A007091.

%K nonn,base

%O 1,1

%A _Clark Kimberling_