OFFSET
1,2
COMMENTS
Numbers 1 to 10 are all new sets of digits. 11 is omitted because its digit set {1} is the same as that of 1. The following numbers are included, until 21 which has the same digit set as 12, and 22 which has the same set as 2.
This sequence is of course finite and has 1022 terms; the number of possible digit sets excluding the empty set and {0}.
LINKS
Nathaniel Johnston, Table of n, a(n) for n = 1..1022 (full sequence)
MAPLE
s:={}: for n from 1 to 1000 do d:=convert(convert(n, base, 10), set): if(not member(d, s))then printf("%d, ", n): s:=s union {d}: fi: od: # Nathaniel Johnston, Jun 21 2011
CROSSREFS
KEYWORD
base,easy,fini,full,nonn
AUTHOR
Jack W Grahl, Jul 10 2010
EXTENSIONS
Corrected by Jack W Grahl, Jan 10 2011
STATUS
approved