OFFSET
1,5
COMMENTS
Right border = mu(n).
Row sums = A104688, the binomial transform of mu(n): 1, 0, -2, -5, -10, -18, ...
FORMULA
P * M, as infinite lower triangular matrices. P = Pascal's triangle, M = mu(n) in the main diagonal and the rest zeros.
EXAMPLE
First few rows of the triangle:
1;
1, -1;
1, -2, -1;
1, -3, -3, 0;
1, -4, -6, 0, -1;
1, -5, -10, 0, -5, 1;
...
PROG
(PARI) row(n) = {my(M = matrix(n, n, i, j, if (i==j, moebius(i))), P = matrix(n, n, i, j, binomial(i-1, j-1))); vector(n, k, (P*M)[n, k]); } \\ Michel Marcus, Feb 15 2022
CROSSREFS
KEYWORD
sign,tabl
AUTHOR
Gary W. Adamson, Jan 17 2007
EXTENSIONS
More terms from Michel Marcus, Feb 15 2022
STATUS
approved