Given the fixed point iteration
$$ p_n = \frac{p_{n - 1}^2 + 3}{5}, $$
which converges for any initial $p_0 \in [0, 1]$, estimate how many iterations $n$ are required to obtain an absolute error $\left| p_n - p \right|$ less than $10^{-4}$ when $p_0 = 1$. No numerical value needed, just give an expression for $n$.
I know that the bound is given by
$$ \left| p_n - p \right| \leq k^n\mbox{max}\left\{ p_0 - a, b - p_0 \right\} $$
where $[a, b]$ is the interval in which the function lives and $k$ is the bound on the derivative of the function for the interval $[a, b]$. However, I'm not sure what to do since there is no explicit function given. Can anyone help me?