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.

A356726 Integers which have in Roman numerals more distinct symbols than any smaller number.

Original entry on oeis.org

1, 4, 14, 44, 144, 444, 1444
Offset: 1

Views

Author

Alain Cousquer, Aug 24 2022

Keywords

Comments

Indices of record highs in A057226.
Smallest number whose Roman notation has exactly n distinct symbols.
The sequence is finite because 1444 is the smallest number using the symbols I,V,X,L,C,D,M.

Examples

			For n = 3, a(3) = 14 because 14 = XIV which is the smallest number with 3 symbols in Roman notation.
		

Crossrefs

Programs

  • Mathematica
    kmax=1500; a={}; n=1; For[k=1, k<=kmax, k++, If[Length[DeleteDuplicates[Characters[RomanNumeral[k]]]] == n, AppendTo[a, k]; n++; k=1]]; a (* Stefano Spezia, Aug 26 2022 *)