OFFSET
1,2
COMMENTS
A first-to-n match between two chess players continues until either player reaches n wins. For example, in the 1978 and 1981 matches between A. Karpov and V. Korchnoi, n was 6; in the 1992 match between B. Fischer and B. Spassky, n was 10.
In chess, as in some other sports, e.g., football, a score k:m is called "big" if |k-m| >= 3. It is interesting that, e.g., a(6) = 9 corresponds to a big score, 6:3, and a(10) = 16 corresponds to a big score, 10:6. Thus a moderately big score in such matches is not a sufficient reason to revise a relative relation of strengths of the winner and the loser.
REFERENCES
V. S. Shevelev, Paradox of a big score, Preprint, VINITI, 1992 (in Russian).
LINKS
Peter J. C. Moses, Table of n, a(n) for n = 1..1000
FORMULA
a(n) = round(2*n*(1 - 4^(-n)*binomial(2*n,n)));
a(n) = 2*n*(1 - 1/sqrt(Pi*n)) + O(1/sqrt(n)).
MATHEMATICA
(Round[2 # (1- Binomial[2 #, #]/4^#)]&)/@Range[20] (* Peter J. C. Moses, Aug 19 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Shevelev, Aug 18 2013
EXTENSIONS
More terms from Peter J. C. Moses and Giovanni Resta
STATUS
approved