How do I find out the time complexity for:

T(n) = 1 if n <= 4
1 + T(n-4) for n > 4

n is even

Any help is appreciated.