So there are $n$ people, each choosing some non-zero counting number. You don't know what any of them choose. To win, you must choose the smallest number; but if you choose the same number as somebody else, you are disqualified. How would you decide what number $k$ is best to choose? I feel like $k\le n$, but apart from that I have no idea where to start. Any ideas?
EDIT: So to avoid a trivial paradox and to somewhat model real human behavior, we want the $n$ people to choose numbers reasonably but not necessarily perfectly. For instance, nobody else is gonna choose $k > n$, as that would be silly. Since choosing 1 being unreasonable would lead to paradox, we'll also say 1 could be chosen, but won't necessarily be picked.

Given that there are $n$ players, let's assume that each player must choose a number $k \in \{z \in \mathbb{Z} | 1 \le z \le n\}$. Note that the order of players picking a number does not affect the outcome.
Some thoughts:
When $\textbf{n = 2}$ equilibrium is achieved when both players choose the smallest number i.e. $1$.
For case $\textbf{n = 3}$, let two numbers from $\{1,2,3\}$ be already choose, then
it is impossible to win whenever $\{1, 2\}$, $\{1, 3\}$ are chosen by others.
it is possible to win when $\{2, 3\}$, $\{1, 1\}$, $\{2, 2\}$ or $\{3, 3\}$ by others.
Let's consider what happens if we choose
$\rightarrow$ winning number
$1$
$\{1, 2\} \rightarrow 2$
$\{1, 3\} \rightarrow 3$
$\{2, 3\} \rightarrow 1$ We win!
$\{1, 1\}$ No winner.
$\{2, 2\} \rightarrow 1$ We win!
$\{3, 3\} \rightarrow 1$ We win!
$2$
$\{1, 2\} \rightarrow 1$
$\{1, 3\} \rightarrow 1$
$\{2, 3\} \rightarrow 3$
$\{1, 1\} \rightarrow 2$ We win!
$\{2, 2\}$ No winner.
$\{3, 3\} \rightarrow 2$ We win!
$3$
$\{1, 2\} \rightarrow 1$
$\{1, 3\} \rightarrow 1$
$\{2, 3\} \rightarrow 2$
$\{1, 1\} \rightarrow 3$ We win!
$\{2, 2\} \rightarrow 3$ We win!
$\{3, 3\}$ No winner.
Therefore it has been shown that choosing $1$ when $n = 3$ gives us best chance of winning. Hence, $k = 1$ is the equilibrium.
This approach can be generalised for more players.