The main recurrence becomes: T(n) = Θ(n) + 2*T(n/2) + Θ(22) which is really just T(n) = Θ(n) + 2*T(n/2) since Θ(22) is some constant times 4, which is a constant, which is a lower-order term than the Θ(n) that's already there.