read `AFS.txt`: print(`The Generalized Quasi-polynomial Capsules for the coefficient of q^(m*n+m-1) mod m `): print(`for the unique formal power series satisying thefunctional equation`): print(f(q)=1+q/((1-q)*(1-q^2))*f(q^m)): print(`for m from 3 to 20, except those that are 2 mod 4 are as follows `): for m from 3 to 20 do if not (m mod 4 =2) then print(`m is`, m): print(CapsuleGQ([1,q/(1-q)/(1-q^2)],q,m,m-1,n,40)); fi: od: print(`This took`, time(), `seconds. `): quit: