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.

A308282 The fifth power of the unsigned Lah triangular matrix A105278.

Original entry on oeis.org

1, 10, 1, 150, 30, 1, 3000, 900, 60, 1, 75000, 30000, 3000, 100, 1, 2250000, 1125000, 150000, 7500, 150, 1, 78750000, 47250000, 7875000, 525000, 15750, 210, 1, 3150000000, 2205000000, 441000000, 36750000, 1470000, 29400, 280, 1, 141750000000, 113400000000, 26460000000, 2646000000, 132300000, 3528000, 50400, 360, 1
Offset: 1

Views

Author

Shuhei Tsujie, May 18 2019

Keywords

Comments

Also the number of k-dimensional flats of the extended Shi arrangement of dimension n consisting of hyperplanes x_i - x_j = d (1 <= i < j <= n, -4 <= d <= 5).

Examples

			Triangle begins:
      1;
     10,     1;
    150,    30,    1;
   3000,   900,   60,   1;
  75000, 30000, 3000, 100, 1;
  ...
		

Crossrefs

Cf. A105278.

Programs

  • Mathematica
    Table[5^(n - k) * Binomial[n - 1, k - 1] * n! / k!, {n, 1, 10}, {k, 1, n}] // Flatten (* Amiram Eldar, Jul 13 2019 *)

Formula

E.g.f.: exp(x*y/(1-5*x)).
T(n,k) = 5^(n-k)*binomial(n-1, k-1)*n!/k! = 5^(n-k)*A105278.