I am given the transition matrix above in a Markov Chain with states $\{1,2,3,4,5,6\}$, and I am asked to find the stationary distribution of this chain. As I noticed state 4 was transient, I tried to find the value of the stationary distribution for the rest of states ( by simply solving a system of equations)
Now as we received the solutions, the first 4 states had no stationary distribution, for the first 3 were null recurrent and the 4th transient. Only states 5 and 6 were positive recurrent and had a value greater than zero.
My question is, how can I intuitively recognize positive and null recurrent states by looking at a matrix ? I had thought the first 3 states to form an irreducible closed set, and thus be positive recurrent. I still do not understand why they aren't, and how I can figure whether they have a stationary distribution or not.
Thank you

Your transition matrix is incorrect because elements of the 3rd row do not sum to $1.$ That may explains your confusing results. Please edit your Question accordingly.
If the second row is changed to $(1/2, 1/4, 1/4, 0,0, 0),$ then you are correct that $\{1,2,3\}$ forms a persistent class that is an ergodic chain. (Obviously ergodic because the square of the transition matrix has all positive elements.)
In R code, its transition matrix is shown below along with a method for finding its stationary distribution.
Thus the stationary (and limiting) distribution is $(0.3103448, 0.5517241, 0.137931).$
Notes: R finds right eigenvectors, so we transpose
P. Some eigenvectors (other than the one we want) may have complex values, soas.numbericremoves useless complex-number notation. Dividinggby the sum of its elements ensures thatgis a probability distribution. The code%*%is for matrix multiplication.