read DelannoyLS: N:=10^30: m:=1000: a:=1000: print(` The `, N, `-th Dellanoy number mod`, m, ` is`): print(DelModM(N,1000)): print(`The sequence of the Dellanoy numbers, modulo`, m, `from `, N , `to `, N+a , `is: `): lprint([seq(DelModM(N+i,m), i=0..a)]): print(`This took`, time(), `seconds. `): quit: