My goal is finding an explicit formula for a recursively defined funtion $f_{k,N}:\{1,\ldots,N\} \to \mathbb R$, where $N,k \in \mathbb N$.
(If it matters. $f_{k,N}$ is a probability distribution function over $\{1,2,\ldots,N\}$)
But I do have no idea how to approach this problem.
The anchors are: $$f_{k,1}(1) = 1, \quad \forall\, k\\ f_{1,N}(x) = \frac 1 N, \quad \forall N \in \mathbb N, x \in \{1,2,\ldots,N\}$$ The recursion is: $$f_{k,N}(x) = \sum_{l=x}^N \frac{1}{l} f_{k-1,l}(x).$$
Is there a general approach to this problem? Can anyone find a non-recursive formula for $f_{k,N}$ in general, or at least in some special cases?
EDIT: In the meantime I was able to come up with following to special cases, but can we find a formula for the general $x \in \{1,2,\ldots,N\}$?
$$ f_{k,N}(N) = \frac{1}{N}f_{k-1,N}(N) = \cdots = \frac{1}{N^{k-1}} f_{1,N}(N) = \frac{1}{N^k} $$
$$ \begin{align} f_{k,N}(N-1) &= \frac{1}{N-1} \underbrace{f_{k-1,N-1}(N-1)}_{= \frac{1}{(N-1)^{k-1}}}+ \frac{1}{N} f_{k-1,N}(N-1) \\ &= \frac{1}{(N-1)^k} + \frac{1}{N}\left( \frac{1}{(N-1)^{k-1}} + \frac{1}{N}f_{k-2,N}(N-1) \right)\\ &= \cdots = \sum_{n=0}^k \frac{1}{N^{k-n}(N-1)^n} \end{align} $$