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.

A322127 Triangular array, read by rows: T(n,k) = numerator of binomial(n-1, n-k)/k!, 1 <= k <= n.

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 2, 1, 1, 1, 1, 5, 5, 5, 1, 1, 1, 3, 5, 5, 1, 1, 1, 1, 7, 7, 35, 7, 7, 1, 1, 1, 4, 14, 7, 7, 7, 1, 1, 1, 1, 9, 6, 7, 21, 7, 1, 1, 1, 1, 1, 5, 15, 5, 7, 7, 1, 1, 1, 1, 1, 1, 11, 55, 55, 11, 77, 11, 11, 11, 11, 1, 1, 1, 6, 11, 55, 33, 11, 11, 11, 11, 11, 1, 1, 1
Offset: 1

Views

Author

Seiichi Manyama, Nov 27 2018

Keywords

Examples

			T(n,k) = binomial(n-1, n-k)/k!.
1/1;
1/1, 1/2;
1/1, 1/1, 1/6;
1/1, 3/2, 1/2,  1/24;
1/1, 2/1, 1/1,   1/6, 1/120;
1/1, 5/2, 5/3,  5/12,  1/24, 1/720;
1/1, 3/1, 5/2,   5/6,   1/8, 1/120, 1/5040;
1/1, 7/2, 7/2, 35/24,  7/24, 7/240,  1/720, 1/40320;
		

Crossrefs

Programs

  • Mathematica
    T[n_, k_] := Numerator[Binomial[n-1, n-k]/k!]; Table[T[n, k], {n,1,10}, {k,1,n}] // Flatten (* Amiram Eldar, Nov 27 2018 *)