Okay so I don't want to get the answer to my problem instantly (I want to try it out myself first) but I don't really have any ideas. I think the key to this problem is knowing how to find the smallest value for the $lcm$ given a number of ordered quadruples and the $gcd$.
If you think that my question is not clear enough, take a look at the problem: There are exactly 77,000 ordered quadruples $(a, b, c, d)$ such that $gcd(a, b, c, d)=77$ and $lcm(a, b, c, d)=n$ . What is the smallest possible value of $n$?
Once again I would really appreciate it if you don't just blurt out the answer, but instead give me hints if you know how to do the problem.
Thank you to all who are willing to help me!
One way to approach this is to use the prime factorizations to check on the limits of the powers of each prime factor and how these affect how many possible values there are for quadruples $(a,b,c,d)$. Let there be $m \ge 2$ prime factors used among $a$, $b$, $c$ and $d$, so you have
$$a = \prod_{i=1}^{m}p_i^{e_i} \tag{1}\label{eq1A}$$
$$b = \prod_{i=1}^{m}p_i^{f_i} \tag{2}\label{eq2A}$$
$$c = \prod_{i=1}^{m}p_i^{g_i} \tag{3}\label{eq3A}$$
$$d = \prod_{i=1}^{m}p_i^{h_i} \tag{4}\label{eq4A}$$
Also, have
$$\min(e_i,f_i,g_i,h_i) = q_i, \; \max(e_i,f_i,g_i,h_i) = r_i, \; 1 \le i \le m \tag{5}\label{eq5A}$$
Let $p_1 = 7$ and $p_2 = 11$. Since the $\gcd$ of a set of numbers is the product of the minimums of the exponents of their prime factors, $\gcd(a,b,c,d) = 77$ gives that
$$q_i = 1, \; i \in \{1,2\} \; \text{ and } \; q_i = 0, \; i \ge 3 \tag{6}\label{eq56}$$
Since the $\operatorname{lcm}$ of a set of numbers is the product of the maximums of the powers of their prime factors, $\operatorname{lcm}(a,b,c,d) = n$ gives that
$$n = \prod_{i=1}^{m}p_i^{r_i} \tag{7}\label{eq7A}$$
The total number of possible quadruples will be the product of the number of combinations available for the powers of each prime factor. To determine this, there are $3$ main cases to consider. Since you want to try this yourself first, I've put the details inside "spoilers" below.
Case #$1$: $r_i = q_i$
Case #$2$: $r_i = q_i + 1$
Case #$3$: $r_i \gt q_i + 1$
The prime factorization of $77\text{,}000$ limits which, and how many, of the cases #$2$ and #$3$ can apply. Also, of course, for any additional primes to be used in $n$, you will want to use the smallest ones available, e.g., $2$, $3$, etc., to get the smallest $n$. I'll leave it to you to do the rest.
Update: Note joriki provides below a simpler way to count the quadruples in cases #$2$ and #$3$ above: