edited based on Exodd's comments:
For a $m$ by $m$ matrix $A$ whose off diagonal elements are all the same $\rho$, and all the diagnoal elements are the same $\gamma + \rho$ , it can be re-written as
$$A=\gamma I+uu^{T},$$
, u is a vector of length m where each element is $\sqrt{\rho}$
Does above properties make it easier to decompose matrix $A$? e.g. Cholesky/Eigen/LU decomposition.
The only thing I can think of is eigen decomposition:
$$(A-\lambda I)\upsilon=0$$
which becomes
$$(\gamma I+uu^{T}-\lambda I)\upsilon=0$$
this leads to a new eigen problem : $$(uu^{T}-(\lambda-\gamma) I)\upsilon=0$$
if $\alpha= \upsilon - \gamma$, then $$(uu^{T}-\alpha I)\upsilon=0$$
how to go further from here ?
Can anyone kindly share some ideas?