#I need help solving these recurrence relations
15 messages · Page 1 of 1 (latest)
$g_1{(n)}=n!$, $g_2{(1)}=0$, $g_3{(1)}=0$
MrMasterGamer0
Some more context:
I have this “triangle” (more of a parallelogram as the 0s extend left of the 1) where terms to the left and right are added together then multiplied by the smaller number between. The recurrence relations represent the equations of diagonal.
A closed form for g_2 and g_3 would be awesome, and a closed form of g_k would be even better. But I at least need help figuring out how to do all that.
$g_1{(n)}=(g_1{(n-1)}+0)n=n!$;
$g_2{(n)}=(g_2{(n-1)}+g_1{(n-1)})(n-2)$, $g_2{(1)}=0$;
$g_3{(n)}=(g_3{(n-1)}+g_2{(n-1)})(n-4)$, $g_3{(1)}=0$
MrMasterGamer0
.solved
Post marked as solved by @light spindle.
Use .unsolved if this was a mistake.
.unsolved