A036741 Values increase, Roman numerals increase lexicographically.
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
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
Comments