Consider a slow sorting algorithm, which applies selection sort to every th element of an $n$-element array, where $i$ takes on values $n / 2, n / 3, \ldots, n / n$ (Julstrom 1992). First, selection sort is applied to two elements of the array, the first and the middle element, then to three elements, separated by the distance $n / 3$, etc., and finally, to every element. Compute the complexity of this algorithm.