login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A092197
Brevity advantage of "new style" over "old style" Roman numerals.
1
0, 0, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 2, 2, 2, 2, 4, 2, 2, 2, 2, 5, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 3, 3, 3, 3, 5, 3, 3, 3, 3, 6, 0, 0, 0, 0, 2, 0
OFFSET
1,4
LINKS
FORMULA
a(n) = A092196(n) - A006968(n).
EXAMPLE
a(4)=2 because old style takes four letters (IIII) versus new style's two (IV).
MAPLE
A092197 := proc(n) return length(convert(n, roman, period=early)) - length(convert(n, roman)): end: seq(A092197(n), n=1..105); # Nathaniel Johnston, May 18 2011
CROSSREFS
Sequence in context: A230571 A037213 A218234 * A213618 A319072 A348271
KEYWORD
base,easy,nonn
AUTHOR
Marc LeBrun, Feb 24 2004
STATUS
approved