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!)
A322047 Numbers which when written in Finnish do not contain the letter "e". 0
0, 1, 2, 5, 6, 11, 12, 15, 16, 100, 101, 102, 105, 106, 111, 112, 115, 116, 200, 201, 202, 205, 206, 211, 212, 215, 216, 500, 501, 502, 505, 506, 511, 512, 515, 516, 600, 601, 602, 605, 606, 611, 612, 615, 616, 1000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
REFERENCES
Suggested in a comment by "miskee11" on a Numberphile video that mentioned A006933.
LINKS
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
Sequence in context: A269966 A026344 A284488 * A057812 A329572 A329569
KEYWORD
nonn,word
AUTHOR
N. J. A. Sloane, Dec 10 2018
EXTENSIONS
0 added by Chai Wah Wu, Dec 11 2018
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 09:22 EDT 2024. Contains 371967 sequences. (Running on oeis4.)