OFFSET
1,1
COMMENTS
All these end in XXXIX.
LINKS
Eric Weisstein's World of Mathematics, Roman Numerals
Wikipedia, Roman numerals
Index entries for linear recurrences with constant coefficients, signature (2,-1).
FORMULA
a(n) = 50n - 11. - Charles R Greathouse IV, May 06 2014
EXAMPLE
39 = XXXIX; 89 = LXXXIX.
MAPLE
[seq(convert(50*n-11, roman), n=1..50)]; # for the Roman version - Wolfdieter Lang, May 09 2014
MATHEMATICA
Table[50 n - 11, {n, 50}] (* Wesley Ivan Hurt, May 07 2014 *)
PROG
(PARI) a(n)=50*n-11 \\ Charles R Greathouse IV, May 06 2014
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
J. Lowell, May 06 2014
EXTENSIONS
More terms from Wesley Ivan Hurt, May 07 2014
STATUS
approved