a.)
for n in range(16):
print(factorial(2*n) / 5000**n)
Based on the results you see, it will look like it converges
b.)
|an+1/an| = | ((2n+2)!/5000^(n+1)) / ((2n)!/5000^n) | = | (2n+2)!/(2n)! * 5000^n/5000^(n+1) | = | (2n+1)(2n+2)/5000 |
In the case as n goes to ∞, this ratio goes to 4∞²/5000 = ∞.
c.) The series actually diverges