OFFSET
1,1
COMMENTS
Although this sequence is theoretically infinite, in actual practice, terms greater than a(15) are rarely reached.
LINKS
Hasbro, Rules of Risk
Wikipedia, Risk game
Index entries for linear recurrences with constant coefficients, signature (2,-1).
FORMULA
a(n) = 2*(n+1) for n<=5, otherwise a(n) = 5*(n-3).
MATHEMATICA
LinearRecurrence[{2, -1}, {4, 6, 8, 10, 12, 15, 20}, 50] (* G. C. Greubel, Jun 04 2016; amended by Georg Fischer, Apr 03 2019 *)
PROG
(PARI) a(n)=if(n>5, 5*n-15, 2*n+2) \\ Charles R Greathouse IV, Aug 21 2015
CROSSREFS
KEYWORD
nonn,easy,less
AUTHOR
Michael Turniansky, Oct 29 2009
EXTENSIONS
a(13) = 50 inserted by Georg Fischer, Apr 08 2019
STATUS
approved