Here is a question from my probability textbook:
Three different persons have each to name an integer not greater than $n$. Find the chance that the integers named will be such that every two are together greater than the third.
Here's what I did. After computing the cases up to $n = 7$ (which I'm not typing out here due to being too lazy), I was able to observe that we have the recursion$$p_1 = 1, \quad p_n = {{(n-1)^3 p_{n-1} + {{3n(n-1)}\over2} + 1}\over{n^3}}$$However, I don't know how to solve it. Can anyone help me?
Edit: I bountied the question. I'd like to see a complete self-contained solution solving the recurrence I give without reference to external sources such as OEIS, Wikipedia, etc.