OFFSET
1,2
COMMENTS
The game described above is played in the German TV Show 'Schlag den Raab'.
LINKS
Peter Kagey, Table of n, a(n) for n = 1..10000
EXAMPLE
For n = 15, the maximum number of rounds per game in the show, a(n) = 11. So there are at least eleven rounds to be played in each game.
MATHEMATICA
Table[ Ceiling[ -1/2 + Sqrt[1/4 + 2 Ceiling[(n^2 + n + 2)/4]]], {n, 1, 50} ]
PROG
(PARI) a(n)=ceil(sqrt((n^2 + n + 5)\4*2+1/4)-1/2) \\ Charles R Greathouse IV, Jun 19 2013
CROSSREFS
KEYWORD
nice,nonn,easy
AUTHOR
Oliver Gronau (ogronau(AT)web.de), Oct 29 2010
EXTENSIONS
More terms from Colin Barker, May 29 2013
STATUS
approved