read `noam.txt`: L:=300: print(`The first`, L, `terms of the Noam Zeilberger sequences `): print(`where The i-th entry is the coefficient of z^(2*i-1) in L_ind(z,x) defined in Eq. (6) of Noam Zeilberger's `): print(` article http://arxiv.org/abs/1512.06751 `): gu:=NZx(x,L): lprint(gu): print(``): print(`When x=0 this is`): print(``): lprint(subs(x=0,gu)): print(``): print(`When x=1 this is`): print(``): lprint(subs(x=1,gu)): print(``): print(`--------------------------------`): print(``): print(`This took`, time(), `seconds. `): quit: