I would like to compute the following sums. The problem is that the binomial coefficients are too large I think so it fails.
from __future__ import division
import numpy as np
from scipy.special import binom
print [sum(binom(n,2*k)*np.sqrt(np.pi*k)**(-n/10) for k in xrange(1,int(n/2)+1)) for n in xrange(100000)]
Is there some way to approximate the answer?