OFFSET
1,2
COMMENTS
REFERENCES
Michael Joseph Halm, Sequences (Re)discovered, Mpossibilities 81 (Aug. 2002).
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..10000
EXAMPLE
5 is a term since its name FIVE has no A, H, M or R.
PROG
(Python)
from num2words import num2words
from itertools import islice, product
def ok(n): return set(num2words(n).replace(" and", "")) & set("harm") == set()
def agen(): # generator of terms < 10**304
base, pows = [k for k in range(1, 1000) if ok(k)], [1]
yield from ([0] if ok(0) else []) + base
for e in range(3, 304, 3):
if set(num2words(10**e)[4:]) & set("harm") == set():
pows = [10**e] + pows
for t in product([0] + base, repeat=len(pows)):
if t[0] == 0: continue
yield sum(t[i]*pows[i] for i in range(len(t)))
print(list(islice(agen(), 55))) # Michael S. Branicky, Jan 15 2026
CROSSREFS
KEYWORD
easy,nonn,word
AUTHOR
Michael Joseph Halm, Aug 23 2002
EXTENSIONS
Numbers containing 8 (eight) removed by Sean A. Irvine, Nov 28 2024
a(52) onward from Michael S. Branicky, Jan 15 2026
STATUS
approved
