GENERALIZATION
==============
As the round-robin tournament involves all distinct
pairings of players (or teams), i.e. 2-subsets of the
"field" of competitors, a natural generalization is
to ask a similar question about k-subsets of {1,..,n}:
What sequence of all k-subsets maximizes the minimum
gap between any two with nonempty intersection?
SPOILER ALERT
=============
(Optimal gaps for round-robin tournament)
The answer is yes, we can arrange a round-robin schedule
where the minimum gap between appearances of a player is
(n/2) + O(1) for a field of n players. The minimum gap
can be arbitrarily large for sufficiently many players.
For n even the largest minimum gap is (n/2) - 1, while
for n odd the largest minimum gap is (n-1)/2. [The
specific case n=5 requires finding a Hamiltonian path
for the Petersen graph, in order to avoid scheduling a
player twice in consecutive competitions.]
[Round-robin tournament: Scheduling algorithm -- Wikipedia]
http://en.wikipedia.org/wiki/Round-robin_tournament#Scheduling_algorithm
The optimal gap for n even can be immediately derived
from the schedule described above. Optimal solutions
for n odd cannot, although the corresponding minimum
gap from the above approach is (n-1)/2 - 1, one less
than the optimum.
regards, chip