read `QuickSortAnalysis.txt`: Digits:=20: k:=8: gu1:=[seq(QsM(n,Hn,i),i=1..k)]: gu2:=[seq(AsyQsM(n,i),i=1..k)]: gu3:=SM(n,k): print(`The list of the first `, k, `moments is (where Hn[i] is the partial sum of Zeta(i)) `): print(``): print(gu1): print(``): print(`and in Maple format `): print(``): lprint(gu1): print(``): print(`This is asymptotically`): print(``): print(gu2): print(``): print(`and in Maple format `): print(``): lprint(gu2): print(``): print(`The limit of the scaled moments, from the 3rd to the`, k, `-th is`): gu3:=[op(3..k,gu3)]: print(``): print(gu3): print(``): print(`and in Maple format `): print(``): lprint(gu3): print(``): print(`In floating-point this is`): print(``): lprint(evalf(gu3)): print(``): print(`---------------------`): print(``): print(`This took`, time(), `seconds. `): print(``): quit: