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) = 50*n - 11. - Charles R Greathouse IV, May 06 2014
From Elmo R. Oliveira, May 20 2026: (Start)
G.f.: x*(39 + 11*x)/(1 - x)^2.
E.g.f.: exp(x)*(50*x - 11) + 11.
a(n) = 2*A008607(n) - 11.
a(n) = 2*a(n-1) - a(n-2). (End)
EXAMPLE
39 = XXXIX; 89 = LXXXIX.
MAPLE
# Alternative: for the Roman version.
[seq(convert(50*n-11, roman), n=1..50)]; # 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
