Context: I am learning Dijstra's Algorithm to find shortest path to any node, given the start node. Here, we can use Fibonnacci Heap as Priority Queue. Following is few lines of algorithm:
For each vertex in PriorityQueue{
do_something()
}
If $V$ is the number of vertices, the subsequent lookup times in the priority queue will be: $$O(\log V), O(\log V-1), \ldots$$
Question:
What would the value of $O(\log V) + O(\log V-1) + O(\log V-2) + .. + O(\log 1)$?