OFFSET
1,1
COMMENTS
The sequence is started with a(1) = 11 and always extended with the smallest integer not yet present and not leading to a contradiction.
Numbers that have an even number of each digit 0 to 9. - Robert Israel, Jan 07 2024
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
The set consisting of the first 15 terms is {11, 22, 33, 44, 55, 66, 77, 88, 99, 1001, 1010, 1100, 1111, 1122, 1133}; we count there six 0's, sixteen 1's, four 2's, four 3's, etc. All those quantities of digits are even numbers.
MAPLE
filter:= proc(n) local L; L:= convert(n, base, 10);
andmap(t -> numboccur(t, L)::even, L) end proc:
select(filter, [$1..10^4]); # Robert Israel, Jan 07 2024
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Eric Angelini and Jean-Marc Falcoz, Mar 17 2017
STATUS
approved