I want to present the following information in some way:

I can achieve this by using an aligned environment as follows:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\begin{aligned}
g(2) &= 4 &\qquad &G(2) = 4 \\
g(3) &= 9 &\qquad 4 \leq &G(3) \leq 7 \\
g(4) &= 19 &\qquad &G(4) = 16 \\
g(5) &= 37 &\qquad 6 \leq &G(5) \leq 17 \\
g(6) &= 73 &\qquad 9 \leq &G(6) \leq 24 \\
g(7) &= 143 &\qquad 8 \leq &G(7) \leq 33 \\
g(8) &= 279 &\qquad 32 \leq &G(8) \leq 42
\end{aligned}
\]
\end{document}
This works fine, of course, but I am now wondering if there might be some better way of presenting this information. I am open to any and all suggestions.


\leqin the "second" column can be corrected by following it by an empty group:\leq {} &. – barbara beeton May 24 '21 at 16:17