OFFSET
1,2
COMMENTS
Conjecture: The sequence is finite, with 43 being the last term.
I checked the conjecture to 10809638.
EXAMPLE
10 is a term of the sequence, since the base-b expansions of 10 for b = 3..9 are 101, 22, 20, 14, 13, 12, 11, respectively, and none of those expansions contain more than two distinct digits.
MATHEMATICA
Select[Range@ 100, Max@ Table[Length@ Union@ IntegerDigits[#, b], {b, 3, # - 1}] <= 2 &] (* Michael De Vlieger, Feb 15 2019 *)
PROG
(PARI) is(n) = for(b=3, n-1, my(d=digits(n, b)); if(#vecsort(d, , 8) > 2, return(0))); 1
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Felix Fröhlich, Feb 14 2019
STATUS
approved