I am working on a project for a campus consulting firm with regards to optimizing a client's office productivity. On average, a phone call between employees lasts about 5 minutes. An average phone call with a client lasts 10 minutes. I am trying to develop a closed summation with regards to recursion that shows the possible ways of organizing the distribution of calls within a $5x$ minute time period.
This equation should show the number of ways it is possible to organize phone calls in a given $5x$ minute time period.
For example, when $x=1$, this summation should evaluate to 1, because our only option is to fit in a 5 minute employee phone call.
And when $x = 2$, the summation should return 2, since we can either split this time into 2 employee phone calls or 1 client call.
I am assuming that my base case will be when $x=1$, as we only have one option as to how we can use this time, an employee call.
I am wondering as to how I should proceed, as I run into a bit of trouble when I have significantly more time. The difficulty arises with, say we have $x = 3$, so 15 minutes. Say I assign 2 employee calls for the first 10 minutes. How can I use this equation to correctly consider how much time I have used, and how much I have left?
Any help with this would be greatly appreciated!