I need to find a recurrence relation such that every 2 hours the number of bacteria gets quadrupled and every 4 hours after creation, 3 times as many of the bacteria die. We start with 4 bacteria initially. n = number of hours. So I'm debating between two relations:
$F(n) = F(n-1) + 4F(n-2) - 3F(n-4)$ or $4F(n-2) - 3F(n-4)$
Any advice on which one? My reasoning for the extra F(n+1) is to take into account the number of bacteria last hour.