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.

A129453 An analog of Pascal's triangle based on A092287. T(n,k) = A092287(n)/(A092287(n-k)*A092287(k)), 0 <= k <= n.

Original entry on oeis.org

1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 16, 24, 16, 1, 1, 5, 40, 40, 5, 1, 1, 864, 2160, 11520, 2160, 864, 1, 1, 7, 3024, 5040, 5040, 3024, 7, 1, 1, 2048, 7168, 2064384, 645120, 2064384, 7168, 2048, 1, 1, 729, 746496, 1741824, 94058496, 94058496, 1741824, 746496, 729, 1
Offset: 0

Views

Author

Peter Bala, Apr 16 2007

Keywords

Comments

It appears that the T(n,k) are always integers. This would follow from the conjectured prime factorization given in A092287. Calculation suggests that the binomial coefficients C(n,k) divide T(n,k) and indeed that T(n,k)/C(n,k) are perfect squares.

Examples

			Triangle starts:
  1;
  1,  1;
  1,  2,  1;
  1,  3,  3,  1;
  1, 16, 24, 16,  1;
  1,  5, 40, 40,  5,  1;
		

Crossrefs

Programs

Formula

T(n, k) = (Product_{i=1..n} Product_{j=1..n} gcd(i,j)) / ( (Product_{i=1..n-k} Product_{j=1..n-k} gcd(i,j)) * ( Product_{i=1..k} Product_{j=1..k} gcd(i,j)) ), note that empty products equal to 1.
T(n, n-k) = T(n, k). - G. C. Greubel, Feb 07 2024