$11$ fishermen go fishing together. There are $11$ chairs near the river in a row. The first fisherman can choose any chair to sit (on the edges, in center, etc). The second fisherman has to sit next to the first. The third one has to sit next to the previous men, without leaving empty chairs between them, and so forth: the $k$-th fisherman has to sit next to the group, without leaving empty gaps.
For example : $$4- 2-1 -3 -5- 6- 7- 8- 9- 10 -11$$ $$4 -3 -2- 1- 5- 6 -7- 8 -9 -10 -11$$ $$1- 2- 3- 4- 5- 6- 7 -8 -9 -10 -11$$ $$9 -8 -5 -4 -2 -1 -3 -6 -7 -10 -11$$
In how many combinations can they sit?
There is a very nice formula for this. Suppose there are $n$ chairs, and the first person sits at chair $k$. There are now $n-1$ chair left over, from which $k-1$ at the left side. The other fisherman can only choose whether they sit left or right. We have to choose $k-1$ from the $n-1$ fisherman to sit at the left. Therefor there are $\binom{n-1}{k-1}$ ways the other fisherman can sit.
Thus, the total amount of possibilities is $$\sum_{k=1}^{n}\binom{n-1}{k-1} = 2^{n-1}$$