We can visualise the round table with $m$ seats and its symmetry as the cyclic group $C_m$. (we can not flip the table, thus no reflections are allowed)
Your seating problem can be restated as colouring the seats with 2 colours, one for when the seat has a person in it and one when it's empty. Take for example silver for seated and eggplant for empty. (I chose colours starting with s and e)
This colouring problem can be solved with Polya's enumeration theorem. We need the cycle index of $C_m$ for Polya's theorem. Cycle index of $C_m$ is
$$\frac{1}{m}\sum_{d \mid m} \varphi(d) x_d^{m/d}$$
where the sum is over all positive divisors $1 \leq d \leq m$ and $\varphi$ is the Euler totient function. For example the cylce index of $C_4$ is $\frac{1}{4}(x_1^4 + x_2^2 + 2 x_4)$.
Polya's method continues with replacing $x_d$ with $s^d + e^d$, so we get
$$Z(s,e)=\frac{1}{m}\sum_{d \mid m} \varphi(d) (s^d + e^d)^{m/d}$$
Now the coefficient of $s^ne^{m-n}$ in $Z(s,e)$ is your amount of colourings with $n$ times colour $s$ and $m-n$ times colour $e$. Denote this coefficient as $S_m(n)$. So $S_m(n)$ is the amount of different seatings with $n$ guests on a table with $m$ seats. By a symmetry argument we get that $S_m(n)=S_m(m-n)$.
The coefficient of $s^ne^{m-n}$ in $(s^d + e^d)^{m/d}$ is zero when $d \nmid n$ or $d \nmid (m-n)$. When $d \mid n$ and $d \mid (m-n)$, the coefficient is ${m/d \choose n/d}$, hence for an arbitrary $n$ we get that
$$S_m(n) =\frac{1}{m}\sum_{\substack{d\mid m \\ d \mid n \\ d \mid (m-n)}} \varphi(d){m/d \choose n/d}$$
For $m=4$ we get that $Z(s,e)=\frac{1}{4}((s+e)^4 + (s^2+e^2)^2 + 2(s^4+e^4))$. If $n=0$, then $S_4(0)=\frac{1}{4}(1+1+2)=1$, $S_4(1)=\frac{1}{4}(4 + 0 + 0)=1$, $S_4(2)=\frac{1}{4}(6 + 2 + 0)=2$.
If you want to include flipping of the table, you have to do the same, but with the cycle index of $D_n$, the dihedral group of order $2n$.