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.

A144778 Square array T(n,k) read by antidiagonals upwards. Mobius function interleaved with k-1 zeros in each column. Every second value in the first row is either 1 or -1. Redheffer type matrix.

Original entry on oeis.org

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

Views

Author

Mats Granvik, Sep 21 2008

Keywords

Comments

The determinant of this matrix appears to be A059841.

Examples

			Table begins:
.1.-1..1.-1..1.-1..1
-1..1..0..0..0..0..0
-1..0..1..0..0..0..0
.0.-1..0..1..0..0..0
-1..0..0..0..1..0..0
.1.-1.-1..0..0..1..0
-1..0..0..0..0..0..1
		

Crossrefs

Formula

T(n,k) = if(n==1 then if(k mod 2==0 then -1 else 1) else if(n mod k == 0 then A008683(n/k) else 0)).