How can i solve this equation? I am really stuck
$T(n) = T(n + 1) + T(n + 2) + 3n + 1$
$T(0)=2$
$T(1)=3$
2026-04-04 13:47:53.1775310473
Solving Recursions like this
91 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
Setting $S_n=T(n)+3n$, you'll obtain $$ S_n=S_{n+1}+S_{n+2}-8. $$