OFFSET
1,3
EXAMPLE
The first multi-digit term is 16 since "one" and "six" taken together contain no duplicate letters. Although "one" itself contains no duplicate letters, by definition 11 is not a term since duplicate digits introduce repeated letters.
PROG
(Python)
m = ["zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"]
def nr(w): return len(w) == len(set(w))
afull = [k for k in range(988) if nr("".join(m[int(d)] for d in str(k)))]
print(afull) # Michael S. Branicky, Aug 18 2022
(PARI) is(n)=my(d=apply(k->[25, 9, 40, 64, 26, 7, 4, 64, 37, 64][k+1], digits(n)), t); for(i=1, #d, if(bitand(t, d[i]), return(0)); t=bitor(t, d[i])); t<64 \\ Charles R Greathouse IV, Aug 18 2022
CROSSREFS
KEYWORD
nonn,word,base,fini,full,easy
AUTHOR
Rick L. Shepherd, Jun 17 2014
STATUS
approved