OFFSET
1,3
REFERENCES
Suggested in a comment by "miskee11" on a Numberphile video that mentioned A006933.
MATHEMATICA
aQ[n_] := StringCount[IntegerName[n, {"Finnish", "Words"}], {"e"}] == 0; Select[Range[0, 1000], aQ] (* Amiram Eldar, Dec 11 2018 *)
PROG
(Python)
from num2words import num2words
A322047_list = [n for n in range(10**4) if 'e' not in num2words(n, lang='fi')] # Chai Wah Wu, Dec 11 2018
CROSSREFS
KEYWORD
nonn,word
AUTHOR
N. J. A. Sloane, Dec 10 2018
EXTENSIONS
0 added by Chai Wah Wu, Dec 11 2018
STATUS
approved