A cow gives birth to a calf every year. The calf becomes a cow in 4 years. The cow gives birth to a calf every year. Starting with one cow, how many animals are there in 17 years?
P.S. The cows live forever.
P.S. May have something to do with Narayana.

Yoou can get some insight into this problem - and indeed solve this particular case - by tracking cows and calves of different ages in a table:
\begin{array}{c|c} \text{year} & \text{mature cows} & \text{new-borns} & \text{1-y-o} & \text{2-y-o} & \text{3-y-o} & \text{total} \\ \hline 1 & 1 & 1 & 0 & 0 & 0 & 2\\ 2 & 1 & 1 & 1 & 0 & 0 & 3\\ 3 & 1 & 1 & 1 & 1 & 0 & 4\\ 4 & 1 & 1 & 1 & 1 & 1 & 5\\ 5 & 2 & 2 & 1 & 1 & 1 & 7\\ 6 & 3 & 3 & 2 & 1 & 1 & 10\\ : & : & : & : & : & : & : \\ \end{array}
After adding mmore rows, yoou should be able to see an easier way of finding the number of mmature cows (and thus new calves) in any given year.
It is perhaps indelicate to inquire into why there are no bull calves.