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.

A127244 A Thue-Morse signed falling factorial triangle.

Original entry on oeis.org

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

Views

Author

Paul Barry, Jan 10 2007

Keywords

Examples

			Triangle begins:
  1;
  -1, 1;
  1, -1, 1;
  0, 0, 0, 1;
  0, 0, 0, -1, 1;
  0, 0, 0, 0, 0, 1;
  0, 0, 0, 0, 0, 0, 1;
  0, 0, 0, 0, 0, 0, -1, 1;
  0, 0, 0, 0, 0, 0, 1, -1, 1;
  0, 0, 0, 0, 0, 0, 0, 0, 0, 1;
  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1;
  ...
		

Crossrefs

Inverse of A127243.
Row sums are A127245.
Cf. A010060.

Programs

  • Mathematica
    T[n_, k_] := (-1)^(n-k) * Product[ThueMorse[i], {i, k+1, n}]; Table[T[n, k], {n, 0, 12}, {k, 0, n}] // Flatten (* Amiram Eldar, Aug 04 2023 *)

Formula

T(n,k) = (-1)^(n-k) * Product_{j=0..n-k-1} A010060(n-j) * [k<=n].

Extensions

More terms from Amiram Eldar, Aug 04 2023