OFFSET
1,1
COMMENTS
In UK English, "102" is written as "one hundred and two".
twO has 1 vowel, thrEE has 2, ElEvEn has 3, fOUrtEEn has 4, sEvEntY OnE has 5, OnE hUndrEd And twO has 6, OnE hUndrEd And thrEE has 7, etc.
LINKS
PROG
(Python)
from num2words import num2words
from itertools import count, islice
def vowels(n): return sum(1 for c in num2words(n) if c in "aeiouy")
def agen():
n, adict = 1, dict()
for k in count(1):
v = vowels(k)
if v == n: yield k; n += 1
print(list(islice(agen(), 23))) # Michael S. Branicky, Aug 09 2022
CROSSREFS
KEYWORD
nonn,word
AUTHOR
Rodolfo Kurchan, Mar 16 2009
EXTENSIONS
Edited by Jon E. Schoenfield, Oct 06 2018
a(10) and beyond from Michael S. Branicky, Aug 09 2022
STATUS
approved