Assume $U_k \sim \mathcal{N}(0,a_k^2)$, where $a_k \rightarrow c > 0$ as $k \rightarrow \infty$. It follows that $U_k^2 \sim \Gamma(\frac{1}{2}, \frac{1}{2a_k^2})$.
I'm interested in the exact and the limiting distribution ($n \rightarrow \infty$) of the following sum $S_n$, which I conjecture to be $$ S_n = \sum_{k=1}^{n}U_k^2 \stackrel{d}{\approx} \frac{1}{n}\sum_{k=1}^{n}a_k^2 \cdot \Gamma\left(\frac{n}{2},\frac{1}{2}\right)$$
I know the summation of gamma random variables can be tricky with varying scale parameters (example 1, example 2), however, the previous conjecture seems to work numerically for various $c$ and $n$ values. Maybe the derivation gets simplified due to shape being $1/2$ for all $k$? Unless it works only with my specific sequence $a_k$.
My question: could we arrive analytically to this result? Maybe it is a known result?
Edit: example R code
require(magrittr)
ak <- function(k){
lapply(1:k, function(z){
1/z^2 - 0.5^z/z^2
}) %>% do.call(c,.) %>% sum
}
lapply(1:100,function(k){
Uk <- rnorm(n = 1000, mean = 0, sd = ak(k))
Uk^2
}) %>% do.call(rbind,.) -> res
# sum of square, dim (1000 x 1)
apply(res,2,sum) -> r0
# Comparing the distributions:
S1 <- rgamma(1000, shape = 100/2, rate = 1/2) * mean(sapply(1:100,ak)^2)
ecdf(r0) %>% plot
ecdf(S1) %>% lines(.,col=2)