The recurrence T(n) = T(2n/3) + 1 has one recursive call that reduces the problem size by factor 2/3, with constant work at each level. The height of the recursion tree is log_(3/2)(n) since we repeatedly multiply by 2/3. With constant work per level, total is O(log n). This matches the claimed answer D.