Minecraft is a computer game where you can do many things, including farming cows.
When fed wheat, cows in Minecraft breed with each other in pairs and produce one baby per pair. After about $20$ minutes, the baby/babies grow and can breed with each other and their parents. There are no genders in Minecraft, nor any issues with cows breeding with their offspring: all fully grown cows are identical.
So what is the total number of cows after n 'breedings'?
Starting with $2$ cows, the total number of cows goes like this:
$$2, 3, 4, 6, 9, 13, 19, 28, 42, 63, 94,$$ and so on.
Let $n$ be the number of times the cows have bred. The number of new cows (difference between two consecutive of the above numbers) equals $$\frac{n - n\%2}2,$$ where $\%$ means modulus.
So what is the total number of cows for any given $n$? I know it is a sum of some sort, but what is it?
This is OEISA061418, interestingly the "example" is about Minecraft. The given solution for the $n$th term is
$$ a(n) = \lceil K*(3/2)^n \rceil $$
where $K=1.0815136685\dots$ and $K=(2/3) K(3)$ where the decimal expansion of $K(3)$ is here.
For clarification as to how this formula is used, suppose you want to know how many cows you have after the $10$th breeding cycle. First,
$$ K*(3/2)^n = (1.0815136685)*(3/2)^{10} \approx 62.3655 $$
Now we have to take the ceiling of this number, which just means rounding it up to the nearest integer. Therefore,
$$ a(10) = \lceil K*(3/2)^n \rceil = \lceil 62.3655 \rceil = 63 $$
which agrees with the sequence. Note that for very large $n$, you may need to use a more exact value of $K$ (which is why I posted that second link.)