How to make the following graphics by using Mathematica?
What I tried:
I used J.M's answer for the Pascal triangle
pascal = With[{n = 6},
Graphics[Table[
Text[Style[Binomial[n - j, n - i], Large], {2 (i - j/2), 3 j/2}], {i, n}, {j, i}]]]
product = MatrixForm[{1, 1, 2, 9, 96, 2500}
then
Show[pascal, product]
GraphicsGrid[pascal, product]
but it doesn't work.
(sequence 1, 1, 2, 9.. is the product of the terms in the $nth$ row)


(j!)^(j - 1)/BarnesG[j + 1]^2gives the desired product. – J. M.'s missing motivation May 20 '16 at 19:50