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”).
%I #19 May 03 2019 08:40:08
%S 0,1,2,3,4,5,6,7,8,17,18
%N Numbers that can be written from base 2 to base 17 using only the digits 0 to 8 (conjectured to be complete).
%C It is a plausible conjecture that there are no more terms, but this has not been proved. - _N. J. A. Sloane_, Nov 17 2017
%H Stuart A. Burrell, Han Yu, <a href="https://arxiv.org/abs/1905.00832">Digit expansions of numbers in different bases</a>, arXiv:1905.00832 [math.NT], 2019.
%t Select[Range[0, 10^5], Function[n, Times @@ Boole@ Map[Max@ IntegerDigits[n, #] <= 8 &, Range[2, 17]] > 0]] (* _Michael De Vlieger_, Aug 15 2016 *)
%Y Cf. A146025, A146026, A146027, A146028, A131646, A275600.
%K nonn,base
%O 1,3
%A _Daniel Mondot_, Nov 02 2008