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

%I #16 May 16 2023 22:07:56

%S 94,98,118,219,223,243,344,348,368,394,398,419,423,444,448,454,459,

%T 464,470,471,472,478,483,488,490,491,492,518,543,568,578,583,588,590,

%U 591,592,719,723,743,844,848,868,969,973,993,1019

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

%t Select[Range[1200],DigitCount[#,5,3]==2&&DigitCount[#,5,4]==1&] (* _Harvey P. Dale_, Apr 04 2022 *)

%Y Cf. A007091.

%K nonn,base

%O 1,1

%A _Clark Kimberling_