Ten people are sitting in a circle of ten chairs, chewing gum. Each person spits out his or her gum and places it either under his or her own chair or under an immediately adjacent chair. How many ways can this happen such that every chair ends up with exactly one piece of gum under it?
I tried creating a chart of small values, obtaining for n people, when n = {1, 2, 3, 4, 5}, $f_n$ = {1, 2, 6, 9, 13}
At first I thought tribonacci, as soon as I saw $f_4$ but that notion vanished as I calculated $f_5$
Can someone provide a clear answer and or solution for $f_{10}$? Thanks.
For $n$ people in a row, not a circle, the number is $Fib(n+1)$. For example for four people there are five possibilities.
For $n$ people ($n \gt 2$) in a circle:
So for $n \gt 2$ the total is $$2+Fib(n)+2Fib(n-1)$$ as you can see in your calculations with $6=2+2+2\times 1$, $9=2+3+2\times 2$, and $13=2+5+2\times 3$.
You can then show $$f_{n+2}=f_{n+1}+f_{n}-2$$ as in $13=9+6-2$.