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.

A320637 Regular triangle read by rows: T(n,k) = Lcm_{m=k..n} d(n,k) where d(n,k) is the denominator of the unsigned Stirling1(n,k)*k!/n! for 0 <= k <= n.

Original entry on oeis.org

1, 1, 1, 1, 2, 1, 1, 6, 1, 1, 1, 12, 12, 2, 1, 1, 60, 12, 4, 1, 1, 1, 60, 180, 8, 6, 2, 1, 1, 420, 180, 120, 6, 6, 1, 1, 1, 840, 5040, 240, 240, 6, 4, 2, 1, 1, 2520, 5040, 15120, 240, 144, 4, 12, 1, 1, 1, 2520, 25200, 30240, 15120, 288, 240, 24, 3, 2, 1
Offset: 0

Views

Author

Michel Marcus, Oct 18 2018

Keywords

Examples

			Triangle begins:
  1,
  1, 1,
  1, 2, 1,
  1, 6, 1, 1,
  1, 12, 12, 2, 1,
  1, 60, 12, 4, 1, 1,
  1, 60, 180, 8, 6, 2, 1,
  1, 420, 180, 120, 6, 6, 1, 1,
  ...
		

Crossrefs

Programs

  • PARI
    d(n,k) = denominator(abs(stirling(n,k,1))*k!/n!);
    T(n,k) = my(x = 1); for (m=k, n, x = lcm(x, d(m,k))); x;

Extensions

Corrected by Michel Marcus, Jul 19 2022