cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A105586 A Moebius-binomial triangle.

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
Offset: 0

Views

Author

Paul Barry, Apr 14 2005

Keywords

Comments

n-th row is all 1's unless n is not squarefree (see A013929). Row sums are A105587. Diagonal sums are A105588. Inverse is A105589.

Examples

			Triangle starts
1;
1,1;
1,1,1;
1,1,1,1;
0,0,0,0,1;
1,1,1,1,1,1;
1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1;
0,0,0,0,1,0,0,0,1;
		

Formula

Number triangle T(n, k)=if(k<=n, binomial(abs(mu(n)), abs(mu(k))), 0)