OFFSET
1,1
LINKS
Robert Israel, Table of n, a(n) for n = 1..40534
EXAMPLE
a(2)=102: a(2) is not 100 (since zero would be repeated), nor 101 (since 1 would be repeated).
MAPLE
filter:= proc(n) local L;
L:= convert(n, base, 10);
nops(L) = nops(convert(L, set)) and convert(L mod 2, set) = {0, 1};
end proc:
Cands:= select(filter, [$11 .. 1000]): nC:= nops(Cands):
R:= 10: r:= 10: r0, r1:= selectremove(type, convert(convert(r, base, 10), set), even):
for count from 1 do
found:= false;
for i from 1 to nC+1-count do
x:= Cands[i];
Lx:= convert(convert(x, base, 10), set);
if nops(Lx intersect r0) = 1 and nops(Lx intersect r1) = 1 then
found:= true;
R:= R, x;
r:= x;
Cands:= subsop(i=NULL, Cands);
r0, r1:= selectremove(type, convert(convert(r, base, 10), set), even);
break
fi
od;
if not found then break fi;
od:
R; # Robert Israel, Jan 09 2025
CROSSREFS
KEYWORD
AUTHOR
Enrique Navarrete, Aug 06 2019
EXTENSIONS
Edited by Robert Israel, Jan 10 2025
STATUS
approved