Task: We roll three (fair) dice, find the probability of their median being $k$ with $1\leq k\leq 6$?
My solution: Let $X$ be the median of the three rolled dice. In order to get $X=k$, we need to roll one $k$, one $j$ with $1\leq j\leq k$ and one $\ell$ with $k\leq\ell\leq 6$. For $k$ there's just one possibility, for $j$ there are $k$ possibilities and for $\ell$ there are $6-k+1$ possibilities. So the probability for $X=k$ is $$P(X=k)=\frac{\displaystyle\binom k1\binom11\binom{6-k+1}1}{\displaystyle\binom63}=\frac{k(7-k)}{20}~.$$
Problem: With my formula for $P(X=k)$ the probability of $1\leq X\leq6$ is $$P(1\leq X\leq6)=\sum_{1\leq k\leq6}P(X=k)=\sum_{k=1}^6P(X=k)=\frac{14}5$$ and not $1$, which brings me to my question(s): What did I do wrong? Can I even use the urn model for this problem?