TRIANGLE =LAMBDA(n, LET( ixs, SEQUENCE(n, n, 0, 1), x, MOD(ixs, n), y, QUOTIENT(ixs, n), IF(x <= y, BINCOEFF(y)(x), "" ) ) )