This recurrence decreases the problem size by 1 each step while adding 1/n. Expanding gives T(n) = T(0) + 1/1 + 1/2 + 1/3 + ... + 1/n. This sum is the harmonic series H_n, which grows logarithmically. The n² and n options are incorrect because the terms 1/n get progressively smaller, and n log n would require linearly growing terms.