Closed form of a recurrence relation

55 Views Asked by At

I was given this problem:

Given a set of $n$ elements, how many possible involutions can we form?

I have managed to device this recurrence relation: $$t_n=t_{n-1}+(n-1)t_{n-2}$$ How can I form a closed form equation for this?