I'm learning how to use recursion trees to solve recurrence relations and while I know how to solve it for the form
$$T(n) = aT\big(\frac{n}{4}\big) + n$$
I'm stuck when the equation has a numerical term, like
$$T(n) = aT\big(\frac{n}{4}\big) + 3$$
Using a recursion tree, what gets multiplied at the first, second, third level? And what is the sum of the work done?