cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A322047 Numbers which when written in Finnish do not contain the letter "e".

Original entry on oeis.org

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
Offset: 1

Views

Author

N. J. A. Sloane, Dec 10 2018

Keywords

References

  • Suggested in a comment by "miskee11" on a Numberphile video that mentioned A006933.

Crossrefs

Programs

  • Mathematica
    aQ[n_] := StringCount[IntegerName[n, {"Finnish", "Words"}], {"e"}] == 0; Select[Range[0, 1000], aQ] (* Amiram Eldar, Dec 11 2018 *)
  • 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

Extensions

0 added by Chai Wah Wu, Dec 11 2018
Showing 1-1 of 1 results.