Consider the case of $N$ resistances $R$ connected in parallel. The equivalent resistance of such a circuit is calculated as follows
$$ \frac{1}{R_{eq}} = \underbrace{\frac{1}{R} + \frac{1}{R} + ..... + \frac{1}{R}}_{\text{N times}} \quad\quad (1)$$
In the case (here) of equivalent resistances, this trivially simplifies to
$$ R_{eq} = \frac{R}{N} \quad \quad (2) $$
Edit following the comments: This reasoning holds only for the resistance being an algebraic variable. Now, I would like to perform the same calculation but by replacing $R$ by $\bar{R}$, where $\bar{R}$ is now a random variable following the law $\mathcal{N}(\mu,\sigma^2)$, and obviously equation (2) doesn't hold in general anymore for random variables.
So, consider now that the resistance is a normally distributed random variable $$ \bar{R} \sim \mathcal{N}(\mu,\sigma^2) $$
Given this, I would like to calculate the (asymptotic) distribution of $\bar{R}_{eq}$. Not being an expert in statistics, I cannot say anything about the law behavior of the sum in (1). I know that the reciprocal distribution of a normal variable is bimodal, but cannot take it from there. Apparently I could not even apply the central limit theorem on sum (1) since the bimodal distribution doesn't have a first nor a second moment.
From a statistical analysis, it seems that $$ \bar{R}_{eq} \overset{N}{\rightarrow} \mathcal{N}\left(\frac{\mu}{N},\frac{\sigma^2}{N^2}\right) $$
which indicates that equation (2) holds even as a law behavior. Can you see any way of deriving this last relationship analytically ?

The Question
Let $(R_1, \dots, R_n)$ denote an IID sample of size $n$, where $R_i \sim N(\mu, \sigma^2)$, and let:
$$Z = \frac{1}{R_1} + \frac{1}{R_2} + \dots + \frac{1}{R_n}$$
Find the asymptotic distribution of $R_{eq} = \large\frac{1}{Z}$.
OP asks
Answer:
No, because the relationship is wrong, and does not hold.
Theoretically, even if one could apply the Central Limit Theorem, it would be the pdf of $Z$ that would be asymptotically Normal ... not the pdf of $1/Z$.
To illustrate that it does not work, here is a one-line Monte Carlo simulation of $Z$ (in Mathematica), as a function of $n$, when say $\mu = 300$ and $\sigma = 5$:
The following plot compares the:
Plainly, the fit does not work.
A better fit
Suggested better fit ...
As above, the asymptotic Normal model is not the correct model ... however, if $\mu$ is large relative to $\sigma$, then a Normal fit of form: $\mathcal{N}\left(\frac{\mu}{n} - blah,\frac{\sigma^2}{n^3}\right)$ appears to perform reasonably well.
For the same example as above, with $n = 100$ (and blah = 0), the fit is:
For $n = 800$ (and blah again 0), the fit is worse:
Plainly, as $n$ increases, a mean adjustment of some function $blah(\mu, \sigma, n)$ is also required.