A146026 Numbers that can be written from base 2 to base 9 using only the digits 0 to 3.
0, 1, 2, 3, 8281, 8282, 8283
Offset: 1
Links
- Stuart A. Burrell, Han Yu, Digit expansions of numbers in different bases, arXiv:1905.00832 [math.NT], 2019.
Programs
-
Mathematica
Select[Range[0, 10^5], Function[n, Times @@ Boole@ Map[Max@ IntegerDigits[n, #] <= 3 &, Range[2, 9]] > 0]] (* Michael De Vlieger, Aug 15 2016 *)
Comments