OFFSET
1,2
COMMENTS
The name has no extra "and" syllables, as in 104 being in this sequence because "one hundred four" has 4 syllables (which divides 104) rather than "one hundred and four" which has 5 syllables.
FORMULA
{k such that A075774(k)|k}.
EXAMPLE
a(15) = 21 because "twenty-one" has 3 syllables, and 3*7 = 21.
PROG
(Python) # uses function in A075774
def ok(n): return n and n%A075774(n) == 0
print([k for k in range(200) if ok(k)]) # Michael S. Branicky, May 27 2024
CROSSREFS
KEYWORD
easy,nonn,word
AUTHOR
Jonathan Vos Post, Aug 08 2009
EXTENSIONS
84 inserted and more terms from Michael S. Branicky, May 27 2024
STATUS
approved