login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A277692 Mendelsohn-Rodney sequence: number of court balanced tournament designs that are available for a given set of teams n. 1

%I #45 Sep 22 2022 15:05:51

%S 0,1,1,1,2,1,2,1,3,2,2,1,4,1,2,3,4,1,3,1,4,3,2,1,6,2,2,3,4,1,4,1,5,3,

%T 2,3,6,1,2,3,6,1,4,1,4,5,2,1,8,2,3,3,4,1,4,3,6,3,2,1,8,1,2,5,6,3,4,1,

%U 4,3,4,1,9,1,2,5,4,3,4,1,8,4,2,1,8,3,2,3,6,1,6,3,4,3,2,3,10,1,3,5,6,1,4,1,6,7,2,1

%N Mendelsohn-Rodney sequence: number of court balanced tournament designs that are available for a given set of teams n.

%C From _Bernard Schott_, Sep 22 2022: (Start)

%C a(n+1) is the number of solutions (n, m) such that the set An = {1, 2, ..., n} can be expressed as the disjoint union of m subsets E1, E2, ..., Em that satisfy: (i) each Ei contains the same number of elements, and, (ii) the sum of elements of each Ei is the same for i = 1, 2, ..., m.

%C The 1st problem, proposed by Philippines, during the 30th International Mathematical Olympiad in 1989 at Braunschweig - Niedersachen (Brunswick), FR Germany, asked to prove there is a solution for n = 1989 and m = 117 (see Holton and IMO link) (End).

%D Derek Holton, A First Step to Mathematical Olympiad Problems, Vol. 1, Mathematical Olympiad Series, World Scientific, 2010, & 8.3. PHIL 1 pp. 250-252 and & 8.11 Solutions pp 261-265.

%H Chai Wah Wu, <a href="/A277692/b277692.txt">Table of n, a(n) for n = 1..10000</a>

%H The IMO Compendium, <a href="https://imomath.com/othercomp/I/Imo1989.pdf">Problem 1</a>, 30th IMO 1989.

%H E. Mendelsohn and P. Rodney, <a href="http://dx.doi.org/10.1016/0012-365X(94)90027-2">The existence of court balanced tournament designs</a>, Discrete Mathematics, 133 (1994), 207-216.

%H <a href="/index/O#Olympiads">Index to sequences related to Olympiads</a>.

%F a(n) is the number of values of c that satisfy the following conditions: C(n,2) mod c = 0, and (n-1) mod c = 0, and 1 <= c <= floor(n/2).

%F a(2n) = A000005(2n-1)-1 for n > 1. - _Chai Wah Wu_, Oct 29 2016

%F a(1) = 0; a(2n+1) = A183063(2n) for n > 0 - _Bernard Schott_, Sep 22 2022

%e For n = 9, c = 1, 2, 4 satisfy the conditions given in the formula, so a(n) = 3.

%t {0}~Join~Table[Function[k, Count[Range@ k, c_ /; And[Divisible[n - 1, c], Divisible[Binomial[n, 2], c]] ]]@ Floor[n/2], {n, 2, 108}] (* _Michael De Vlieger_, Oct 27 2016 *)

%o (Python 3.5)

%o import scipy.stats

%o teams = 151

%o courtcount = []

%o i= 1

%o for j in range(1,teams):

%o t = 0

%o for i in range(1,int(j/2) + 1):

%o if j>1 and ((j*(j-1))/2)%i == 0 and (j-1)%i == 0:

%o t += 1

%o if j > 1:

%o courtcount.append(t)

%o a = 0

%o for p in courtcount:

%o if p == 1:

%o a+=1

%o print(courtcount)

%o (PARI) a(n) = #select(x->(!(binomial(n, 2) % x)) && !((n-1) % x), vector(n\2, k, k)); \\ _Michel Marcus_, Oct 27 2016

%o (Python)

%o from __future__ import division

%o from sympy import divisors

%o def A277692(n):

%o return sum(1 for c in divisors(n-1) if c < n-1 and not (n*(n-1)//2) % c) if n != 2 else 1 # _Chai Wah Wu_, Oct 29 2016

%Y Cf. A000005, A183063, A274332.

%K nonn

%O 1,5

%A _Andrew G. McEachern_, Oct 27 2016

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 16:38 EDT 2024. Contains 371794 sequences. (Running on oeis4.)