I'm finding difficulty to find the time complexity of this pseudocode function
f(n):
    count = 0
    
    for (i = 0; i < n; ++i)
        for (j = i; j > 0; --j)
            count++
end;
It's not O(n) but it grows faster than O(n) and it is not O(n^2) but it grows slower than O(n^2), is it n*log(n)?
 
    