read `GCF.txt`: K1:=40: A1:=1: print(`Consider the infinite continued fractions a(1)+(b(1)/(a(2)+b(2)/a(3)+b(3)... `): print(``): print(`where a(n)= n+k1, and b(n)=a1*n `): print(``): print(`for all the k1, a1 below, we list the explicit expressions for the numerator and denominator in terms of G[n]`): print(`where G[n] is the Incomplete Gamma function GAMMA(n,-a1) `): print(``): print(`followed by the exact (proved!) value of the faction, followed by the error in truncating it after 100 terms`): for a1 from 1 to A1 do for k1 from 1 to K1 do print(``): print([k1,a1]= Yaron(k1,a1,n,G)): print(``): od: od: for a1 from 1 to A1 do for k1 from 1 to K1 do print(``): print([k1,-a1]= Yaron(k1,-a1,n,G)): print(``): od: od: print(``): print(`--------------`): print(``): print(`This took`, time(), `seconds. `): print(``): quit: