read MarkovWZ: H:=((z+x)!/(2*x+z+1)!)^5; print(`With `, H, `as the kernel, the Best Delta with n+k=40 is `): print(BestDelt(H,Zeta(5),z,x,40)); H:=((z+x)!/(2*x+z+1)!)^4/(x+z+1); print(`With `, H, `as the kernel, the Best Delta with n+k=40 is `): print(BestDelt(H,Zeta(5),z,x,40)); H:=((z+x)!/(2*x+z+1)!)^3/(x+z+1)^2; print(`With `, H, `as the kernel, the Best Delta with n+k=40 is `): print(BestDelt(H,Zeta(5),z,x,40)); H:=((z+x)!/(2*x+z+1)!)^2/(x+z+1)^3; print(`With `, H, `as the kernel, the Best Delta with n+k=40 is `): print(BestDelt(H,Zeta(5),z,x,40)); H:=((z+x)!/(2*x+z+1)!)^1/(x+z+1)^4; print(`With `, H, `as the kernel, the Best Delta with n+k=40 is `): print(BestDelt(H,Zeta(5),z,x,40)); print(`It took `, time() ` seconds of CPU time`): quit: