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.

A036741 Values increase, Roman numerals increase lexicographically.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38
Offset: 1

Views

Author

Keywords

Comments

XXXVIII = 38 is the last entry in the Dictionary of Roman Numerals.

Crossrefs

Cf. A036742.

Programs

  • Python
    from roman import toRoman
    last=100; A36741=[(last:=n) for n in range(1, 40) if toRoman(n)>toRoman(last)]
    def A036741(n): return A36741[n-1] # M. F. Hasler, Aug 16 2025