login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A117383 Positive numbers whose Spanish names do not include repeated letters. 1
1, 2, 3, 4, 10, 11, 12, 15, 80, 100, 1000, 1001, 1002, 1003, 1004, 1011, 1012, 1080, 2000, 3000, 3001, 4000, 11000, 12000, 80000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
PROG
(Python)
from num2words import num2words as n2w
def letters(n):
return "".join(c for c in n2w(n, lang='es') if c.isalpha())
def ok(n):
w = letters(n)
return len(w) == len(set(w))
print([k for k in range(1, 100000) if ok(k)]) # Michael S. Branicky, Jun 08 2022
CROSSREFS
Sequence in context: A007091 A058185 A080897 * A047455 A336193 A202426
KEYWORD
fini,full,nonn,word
AUTHOR
Rodolfo Kurchan, Apr 24 2006
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 01:06 EDT 2024. Contains 371964 sequences. (Running on oeis4.)