I have to find the $p$-value but I'm having difficulty with the F values.
I have this table:
Now after some computation from an exercice, i calculate the F test statistic like so:
$F = \text{MSS}/\text{MSE}$,
which in my case is $11.54/6.1506 = 1.8762$.
The degree of freedom of my numerator is $1$ and of the denominator is $16$.
How do I get my $p$-value from this table and this calculations? Thanks you

The last equation in your picture says: The $1-\alpha$-th quantile of an F distribution where the first parameter is one and the second is n (F($1-\alpha$, 1, n)) is the same as the square of the $1-\frac{\alpha}{2}$-th quantile of the t distribution with n degrees of freedom($t^2(1-\frac{\alpha}{2},n))$.
$\Rightarrow$ In theory this should work like this:
1.From the table of the t-distribution on the seventh row you read off the values for $\nu = 16$ and square them.
For example: $t(0.900,16) = 1.34061 \hspace{.1cm} \Rightarrow t^2(0.900,16) = 1.797235$. Here $1-\frac{\alpha}{2} = 0.900 \hspace{.1cm} \Rightarrow \alpha = 0.2$ That means that $F(1-\alpha, 1, 16) = F(1-0.2, 1, 16) = F(0.8, 1, 16) = t^2(0.900,16) = 1.797235$.
NOTE: There is a mistake in the table - the row for $\nu = 16$ corresponds to the t-distribution with 15 instead of 16 degrees of freedom.
Ive seen this by checking with R:
The remaining rows are OK:
The quantiles of the t-distribution with 16 degrees of freedom are:
The quantile values of $t^2(1-\frac{\alpha}{2},16)$ and $F(1-\alpha, 1, 16)$ are:
Your observation was 1.8762. This falls between the 80-th quantile (1.78692) and the 90-th quantile (3.04811) of the $F_{1,16}$ distribution. This means that your p-value is between 0.10 and 0.20.