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.

A073134 Table by antidiagonals of T(n,k)=n*T(n,k-1)-T(n,k-2) starting with T(n,1)=1.

Original entry on oeis.org

1, 1, 1, 0, 2, 1, -1, 3, 3, 1, -1, 4, 8, 4, 1, 0, 5, 21, 15, 5, 1, 1, 6, 55, 56, 24, 6, 1, 1, 7, 144, 209, 115, 35, 7, 1, 0, 8, 377, 780, 551, 204, 48, 8, 1, -1, 9, 987, 2911, 2640, 1189, 329, 63, 9, 1, -1, 10, 2584, 10864, 12649, 6930, 2255, 496, 80, 10, 1, 0, 11, 6765, 40545, 60605, 40391, 15456, 3905, 711, 99, 11, 1, 1, 12
Offset: 1

Views

Author

Henry Bottomley, Jul 16 2002

Keywords

Examples

			Rows start:
  1, 1,  0, -1,  -1,   0,    1, ...;
  1, 2,  3,  4,   5,   6,    7, ...;
  1, 3,  8, 21,  55, 144,  377, ...;
  1, 4, 15, 56, 209, 780, 2911, ...;
  ...
		

Crossrefs

Rows include A010892, A000027, A001906, A001353, A004254, A001109, A004187, A001090, A018913, A004189, A004190. Columns include (with some gaps) A000012, A000027, A005563, A057722.
Cf. A094954.

Programs

Formula

T(n, k) = A073133(n, k)-2*A073135(n, k-2).
T(n, k) = Sum_{j=0..k-1} A049310(k-1, j)*n^j.