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.

A093430 Triangle read by rows: T(n,k) = lcm(n, n-1, ..., n-k+2, n-k+1)/lcm(1, 2, ..., k) (1 <= k <= n).

Original entry on oeis.org

1, 2, 1, 3, 3, 1, 4, 6, 2, 1, 5, 10, 10, 5, 1, 6, 15, 10, 5, 1, 1, 7, 21, 35, 35, 7, 7, 1, 8, 28, 28, 70, 14, 14, 2, 1, 9, 36, 84, 42, 42, 42, 6, 3, 1, 10, 45, 60, 210, 42, 42, 6, 3, 1, 1, 11, 55, 165, 330, 462, 462, 66, 33, 11, 11, 1, 12, 66, 110, 165, 66, 462, 66, 33, 11, 11, 1, 1, 13
Offset: 1

Views

Author

Amarnath Murthy, Mar 31 2004

Keywords

Comments

An LCM-analog of the binomial coefficients. - N. J. A. Sloane, Aug 26 2015

Examples

			T(7,3) = lcm(7,6,5)/lcm(1,2,3) = 210/6 = 35.
Triangle starts:
  1;
  2,  1;
  3,  3,  1;
  4,  6,  2,  1;
  5, 10, 10,  5,  1;
  6, 15, 10,  5,  1,  1;
  ...
		

Crossrefs

Cf. A067049 (same triangle with an additional leading column of ones).
Row sums yield A093431.

Programs

Extensions

More terms from Emeric Deutsch, Jan 30 2006