There's a handy wiki link in the dupe target of the linked question. According to the wiki article, we can map a specific $(d, c, b, a)$, a decreasing list of positive numbers, to the number
$$\binom{d-1}{4} + \binom{c-1}{3} + \binom{b-1}{2} + \binom{a-1}{1}+1.$$
(Note that, in the wiki article, the numbers have a lower bound of $0$ instead of $1$, and the numbering system also starts at $0$, hence the $-1$s and the $+1$, so that you can get your numbering system from $1$ to $70$. Also, note that this assumes $\binom{n}{k} = 0$ for $k > n$, which is necessary to assume when $c = 1$.)
As an example, $(6, 5, 2, 1)$ corresponds to the number
$$\binom{5}{4} + \binom{4}{3} + \binom{1}{2} + \binom{0}{1}+1 = 5 + 4 + 0 + 0 = 9,$$
making it the $9$th combination out of $70$.
Of course, you want the inverse operation to this. Specifically, you want the combination corresponding to the $i$th index, in order to enumerate all combinations with a single variable. This section from the wiki link tells you how to go about doing this. Given an index $N$ between $1$ and $70$,
- Find the largest $k$ so that $\binom{k}{4} \le N - 1$. Let $d = k + 1$. (Don't forget to allow for the possibility for $\binom{k}{4} = 0$. In fact, if $N = 0$, then $(d, c, b, a) = (4, 3, 2, 1)$)
- Find the largest $k$ so that $\binom{k}{3} \le N - 1 - \binom{d-1}{4}$. Let $c = k + 1$. (If $N - 1 - \binom{d-1}{4} = 0$, then $(d, c, b, a) = (d, 3, 2, 1)$.)
- Find the largest $k$ so that $\binom{k}{2} \le N - 1 - \binom{d-1}{4} - \binom{c-1}{4}$. Let $b = k + 1$. (If the right hand side is $0$, then $b = 2$ and $a = 1$.)
- The remainder should be a number less than or equal to $b - 1$. Let it be $a$.