I have a multilinear regression model with 4 parameters and 164 observations. I want to determine the confidence intervals for each coefficient of the multilinear regression. I have the covariance matrix for the 4 parameters. The formula for calculating the confidence intervals for βᵢ, the coefficient corresponding to parameter xᵢ, is given by:
$IC = [βᵢ ± t_{α/2}^{n-p-1} \sqrt{Var(βᵢ)/(n-p)}]$
Here, n represents the number of observations (164 in my case), p represents the number of parameters (4 in my case). $Var(βᵢ)$ refers to the corresponding element of the covariance matrix.
My question is should I divide by the (n-p) in the $\sqrt{Var(βᵢ)/(n-p)}$ or not, i find different versions of it on the internet.