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.

A077050 Left Moebius transformation matrix, M, by antidiagonals.

Original entry on oeis.org

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

Views

Author

Clark Kimberling, Oct 22 2002

Keywords

Comments

If S=(s(1),s(2),...) is a sequence written as a column vector, then M*S is the Moebius transform of S; i.e. its n-th term is Sum{mu(k)*s(k): k|n}. If s(n)=n, then M*S(n)=phi(n), the Euler totient function, A000010. Row sums: 0 for n>=2.

Examples

			Northwest corner:
1 0 0 0 0 0
-1 1 0 0 0 0
-1 0 1 0 0 0
0 -1 0 1 0 0
-1 0 0 0 1 0
1 -1 -1 0 0 1
		

Crossrefs

Programs

  • PARI
    nn=10; matrix(nn, nn, n, k, if (n % k, 0, 1))^(-1) \\ Michel Marcus, May 21 2015

Formula

M = T^(-1), where T is the left summatory matrix, A077049.