P(X(t.start, t.end)=x | r, alpha, a, b). Returns the probability that a
customer makes x repeat transactions in the time interval (t.start, t.end].
It is impossible for a customer to make a negative number of repeat
transactions. This function will return an error if it is given negative
times or a negative number of repeat transactions. This function will also
return an error if t.end is less than t.start.
t.start, t.end, and x may be vectors. The standard rules for vector
operations apply - if they are not of the same length, shorter vectors will
be recycled (start over at the first element) until they are as long as the
longest vector. It is advisable to keep vectors to the same length and to use
single values for parameters that are to be the same for all calculations. If
one of these parameters has a length greater than one, the output will be a
vector of probabilities.