How fast do eigenvalues decay in a large Bernoulli random graph for a fixed large $n$ (number of nodes) and fixed $p$ (probability of dropping an edge)? Also known as Erdős–Rényi random graph. Empirically, if we sort eigenvalue in decreasing order, their magnitudes seem to decay exponentially with $i$=position in the sorted list. Can someone point me to a reference or a way to justify this?
This graph plots log of absolute value of eigenvalues of a large Erdős–Rényi random graph, arranged in decreasing order.
ListLogPlot@Rest@Reverse@Sort@Abs@Eigenvalues@N@AdjacencyMatrix@RandomGraph@BernoulliGraphDistribution[2000, 0.5]


As $n \to \infty$ (with constant $p$) the eigenvalues of $G_{n,p}$ are essentially described by Wigner's semicircle law.
For this purpose, let $(Y_n)_{n=1}^\infty$ be a sequence of random $n \times n$ symmetric matrices, where
Let $X_n = Y_n/\sqrt n$. As $n \to \infty$, the eigenvalues of $X_n$ converge to a distribution with PDF $f(t) = \frac1{2\pi}\sqrt{4-t^2}$, in the sense that the number of eigenvalues of $X_n$ in the range $[a,b] \subseteq [-2,2]$ converges to $\displaystyle\int_a^b f(t)\,dt$.
For $G_{n,p}$, we almost satisfy the hypotheses of the theorem, except that the distribution of the off-diagonal entries is Bernoulli, which does not have mean $0$. This only affects the leading eigenvalue, which is $\approx np$; the other eigenvalues follow a semicircle law.
Here is an example with $n=2000$ and $p = \frac12$, where I plot a histogram of the actual eigenvalues against the theoretical semicircle (centered at $(0,0)$ with radius $\sqrt{2000}$, then normalized to integrate to $2000$). You don't see the leading eigenvalue of $\approx 1000$ here.
Mathematica code: