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.

A129439 An analog of Pascal's triangle: T(n,k) = A092143(n)/(A092143(n-k)*A092143(k)), 0 <= k <= n.

Original entry on oeis.org

1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 8, 12, 8, 1, 1, 5, 20, 20, 5, 1, 1, 36, 90, 240, 90, 36, 1, 1, 7, 126, 210, 210, 126, 7, 1, 1, 64, 224, 2688, 1680, 2688, 224, 64, 1, 1, 27, 864, 2016, 9072, 9072, 2016, 864, 27, 1, 1, 100, 1350, 28800, 25200, 181440, 25200, 28800, 1350, 100, 1
Offset: 0

Views

Author

Peter Bala, Apr 15 2007

Keywords

Comments

It appears that the T(n,k) are always integers. This would follow from the conjectured prime factorization given in the comments section of A092143.

Examples

			Triangle starts
  1;
  1, 1;
  1, 2,  1;
  1, 3,  3,  1;
  1, 8, 12,  8, 1;
  1, 5, 20, 20, 5, 1;
		

Crossrefs

Cf. A007955 (second column), A092143.

Programs

Formula

T(n,k) = Product_{j=1..n} floor(n/j)!/((Product_{j=1..n-k} floor((n-k)/j)!)*(Product_{j=1..k} floor(k/j)!)).
T(n, 1) = A007955(n).
T(n, n-k) = T(n, k). - G. C. Greubel, Feb 06 2024