How to solve this recurrence relation

T(n)= 3 T(n/2) + n lgn

I am not convinced that we can apply Master method.And thus when i solve it using iterative approach i am stuck in logarithmic series formed in above.any help would be appreciated.