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.

A093430 Triangle read by rows: T(n,k) = lcm(n, n-1, ..., n-k+2, n-k+1)/lcm(1, 2, ..., k) (1 <= k <= n).

This page as a plain text file.
%I A093430 #39 Jul 26 2023 08:31:16
%S A093430 1,2,1,3,3,1,4,6,2,1,5,10,10,5,1,6,15,10,5,1,1,7,21,35,35,7,7,1,8,28,
%T A093430 28,70,14,14,2,1,9,36,84,42,42,42,6,3,1,10,45,60,210,42,42,6,3,1,1,11,
%U A093430 55,165,330,462,462,66,33,11,11,1,12,66,110,165,66,462,66,33,11,11,1,1,13
%N A093430 Triangle read by rows: T(n,k) = lcm(n, n-1, ..., n-k+2, n-k+1)/lcm(1, 2, ..., k) (1 <= k <= n).
%C A093430 An LCM-analog of the binomial coefficients. - _N. J. A. Sloane_, Aug 26 2015
%H A093430 Bakir Farhi, <a href="http://arxiv.org/abs/1002.1383">An analog of the arithmetic triangle obtained by replacing the products by the least common multiples</a>, arXiv:1002.1383 [math.NT], 2010.
%H A093430 Siao Hong and Guoyou Qian, <a href="https://doi.org/10.1142/S1793557114500569">On the lcm-analog of binomial coefficient</a>, Asian-European Journal of Mathematics, Volume 07, Issue 04, December 2014;  DOI: 10.1142/S1793557114500569.
%e A093430 T(7,3) = lcm(7,6,5)/lcm(1,2,3) = 210/6 = 35.
%e A093430 Triangle starts:
%e A093430   1;
%e A093430   2,  1;
%e A093430   3,  3,  1;
%e A093430   4,  6,  2,  1;
%e A093430   5, 10, 10,  5,  1;
%e A093430   6, 15, 10,  5,  1,  1;
%e A093430   ...
%p A093430 T:=(n,k)->lcm(seq(i,i=n-k+1..n))/lcm(seq(j,j=1..k)): for n from 1 to 13 do seq(T(n,k),k=1..n) od; # yields sequence in triangular form # _Emeric Deutsch_, Jan 30 2006
%t A093430 t[n_, k_] :=  LCM @@ Table[j, {j, n-k+1, n}] / LCM @@ Table[j, {j, 1, k}]; t[_, 0] = 1; Table[t[n, k], {n, 1, 13}, {k, 1, n}] // Flatten (* _Jean-François Alcover_, Apr 23 2014 *)
%Y A093430 Cf. A067049 (same triangle with an additional leading column of ones).
%Y A093430 Cf. A093431, A093432, A093433.
%Y A093430 Row sums yield A093431.
%K A093430 nonn,tabl
%O A093430 1,2
%A A093430 _Amarnath Murthy_, Mar 31 2004
%E A093430 More terms from _Emeric Deutsch_, Jan 30 2006