Algorithm efficiency
I missed this question on a test and I don't have the answer yet. I was hoping someone could derive a formula representing the performance of this algorithm.
for (int i =0; i < n; i++){
for (int j = i; j > 0; j /= 2){
out.println(j);
}
}

