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.
%I A048619 #37 Jan 04 2025 03:03:11 %S A048619 1,1,1,1,2,1,3,3,4,2,10,5,30,15,7,7,56,28,252,126,60,30,330,165,396, %T A048619 198,286,143,2002,1001,15015,15015,7280,3640,1768,884,15912,7956,3876, %U A048619 1938,38760,19380,406980,203490,99484,49742,1144066,572033,1961256,980628 %N A048619 a(n) = LCM(binomial(n,0), ..., binomial(n,n)) / binomial(n,floor(n/2)). %H A048619 <a href="/index/Lc#lcm">Index entries for sequences related to lcm's</a> %F A048619 a(n) = A002944(n)/A001405(n). %F A048619 a(n) = lcm(1..n+1)/(floor((n+3)/2)*binomial(n+1,floor((n+3)/2))). - _Paul Barry_, Jul 03 2006 %F A048619 a(n) = lcm(1,2,...,n+1) / (ceiling((n+1)/2)*binomial(n+1,floor((n+1)/2))) = A003418(n+1) / A100071(n+1). - _Max Alekseyev_, Oct 23 2015 %F A048619 a(n) = A263673(n+1) / A110654(n+1) = A180000(n+1) / A152271(n). - _Max Alekseyev_, Oct 23 2015 %F A048619 a(2*n-1) = A068553(n) = A068550(n)/n. %e A048619 If n=10 then A002944(10)=2520, A001405(10)=252, the quotient a(10)=10. %t A048619 Table[Apply[LCM, Binomial[n, Range[0, n]]]/Binomial[n, Floor[n/2]], {n, 0, 48}] (* _Michael De Vlieger_, Jun 29 2017 *) %o A048619 (PARI) {A048619(n) = lcm(vector(n+1, i, i)) / binomial(n+1, (n+1)\2) / ((n+2)\2);} %o A048619 (Magma) [Lcm([1..n+1]) div (Floor((n+3)/2)*Binomial(n+1,Floor((n+3)/2))): n in [0..50]]; // _Vincenzo Librandi_, Jul 10 2019 %Y A048619 Cf. A001405, A002944. %K A048619 nonn,easy %O A048619 0,5 %A A048619 _Labos Elemer_ %E A048619 Definition corrected and a(0)=1 prepended by _Max Alekseyev_, Oct 23 2015