Doing some analysis of my problem, I have come up with the following equation (I tried to search this problem but no luck)
$S_N = \sum \limits_{i=1}^{N} \exp{\left(-\frac{X_i^2}{2\sigma^2}\right)}$
where $X_i \ \ \text{~} \ \ {N(0, \sigma^2)}$
It is obvious that $S_N \rightarrow \infty$ as $N \rightarrow \infty$
The solution I was thinking of is (it may be wrong)
$\frac{N}{S_N} \simeq \sqrt{2}$
which I got from Matlab by generating 1000000 numbers, and they were all same for different standard deviation, and different number of samples. Here is Matlab script I used,
N = 1000000;
sd = 3; % arbitrary standard deviation
x = sd*randn(1, N);
S = sum(exp(-x.^2/(2*sd^2)));
N/S
How can I solve this problem? Can you recommend any approximation, or bound theorem to play this with? Thanks!!