read `ParkingStatistics.txt`: L1:=60: L2:=70: K:=6: gu:=[]: for i from 1 to L1 do print(`The generating function, in x, of parking functions of length`, i, ` is: `): gu1:=Pnx(i,1,1,x): gu:=[op(gu),gu1]: print(gu1): od: mu:=[]: for i from L1+1 to L2 do print(`The generating function, in x, of parking functions of length`, i, ` is: `): gu1:=Pnx(i,1,1,x): gu:=[op(gu),gu1]: print(gu1): print(`The mean, variance,and scaled moments up to the`, K, `-th are`): mu1:=evalf(AlphaSeq(gu1,x,K)): mu:=[op(mu),mu1]: od: print(`To sum up, the sequence of generating functions up to the`, L2, `-th are `): print(``): lprint(gu): print(`and the sequence of [ave, variance, ScaledMoments] from `, L1+1, `to `, L2, `are : `): print(``): lprint(mu): print(`-----------------------------------------`): print(`This took`, time(), `seconds. `): quit: