This is the definition of Graham's Number.
How do I subdivide the text in the bracket, as shown?
\documentclass{article}
\usepackage{amsmath,amssymb}
\begin{document}
\[g_n =
\begin{cases}
3\uparrow\uparrow\uparrow\uparrow3 & n=1\\
3\uparrow^{g_{n-1}}3 & n\geq2, n\in\mathbb{N}
\end{cases}
\]
\end{document}
casesenvironment provided by theamsmathpackage. – Mico Aug 07 '21 at 18:44