OFFSET
1,1
LINKS
Seiichi Manyama, Table of n, a(n) for n = 1..10000
EXAMPLE
62 in base 4 is 332. As that has precisely two 3's, 62 is in the sequence.
63 in base 4 is 333. As that has one more 3 than specified, 63 is not in the sequence.
MAPLE
select(k-> numboccur(3, convert(k, base, 4))=2, [$0..500])[]; # Alois P. Heinz, Feb 22 2019
MATHEMATICA
Select[Range[260], Count[IntegerDigits[#, 4], 3] == 2 &]
Select[Range[300], DigitCount[#, 4, 3]==2&] (* Harvey P. Dale, Aug 11 2024 *)
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
STATUS
approved