login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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.
0
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,5
LINKS
Abdelmalek Bedhouche and Bakir Farhi, On some products taken over the prime numbers, arXiv:2207.07957 [math.NT], 2022.
Bakir Farhi, On the derivatives of the integer-valued polynomials, arXiv:1810.07560 [math.NT], 2018. See Table 1 c(n,k) p. 15.
EXAMPLE
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,
...
PROG
(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;
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Michel Marcus, Oct 18 2018
EXTENSIONS
Corrected by Michel Marcus, Jul 19 2022
STATUS
approved