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.

A268544 Numbers whose name in American English has exactly four e's.

Original entry on oeis.org

17, 73, 77, 103, 107, 112, 113, 114, 115, 116, 121, 125, 128, 129, 133, 137, 143, 147, 153, 157, 163, 167, 170, 172, 174, 176, 181, 185, 188, 189, 191, 195, 198, 199, 211, 218, 219, 223, 227, 271, 275, 278, 279, 283, 287, 293, 297, 301, 305, 308, 309, 310, 320
Offset: 1

Views

Author

N. J. A. Sloane, Feb 07 2016

Keywords

Comments

Arose in discussion of A268236.

Examples

			17 is a term because seventeen has four e's.
		

Crossrefs

Programs

  • Python
    from num2words import num2words
    def ok(n): return num2words(n).count('e') == 4
    print([k for k in range(321) if ok(k)]) # Michael S. Branicky, Mar 25 2025

Extensions

a(35) and beyond from Michael S. Branicky, Mar 25 2025