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.

A093880 a(n) = lcm(1, 2, ..., 2n) / lcm(1, 2, ..., n).

This page as a plain text file.
%I A093880 #23 Feb 16 2025 08:32:53
%S A093880 2,6,10,70,42,462,858,858,4862,92378,8398,193154,74290,222870,6463230,
%T A093880 200360130,11785890,11785890,22951470,22951470,941010270,40463441610,
%U A093880 1759280070,82686163290,115760628606,115760628606,2045104438706
%N A093880 a(n) = lcm(1, 2, ..., 2n) / lcm(1, 2, ..., n).
%C A093880 Also, lcm(n+1, n+2, ..., 2n-1, 2n) / lcm(1, 2, ..., n-1, n).
%H A093880 T. D. Noe, <a href="/A093880/b093880.txt">Table of n, a(n) for n = 1..500</a>
%H A093880 J. Sondow, <a href="https://doi.org/10.1090/S0002-9939-03-07081-3">Criteria for irrationality of Euler's constant</a>, Criteria for irrationality of Euler's constant, Proc. Amer. Math. Soc. 131 (2003) 3335-3344.
%H A093880 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/LeastCommonMultiple.html">Least Common Multiple</a>
%H A093880 <a href="/index/Lc#lcm">Index entries for sequences related to lcm's</a>
%F A093880 The prime number theorem implies that a(n) = e^(n(1+o(1))) as n -> infinity. In other words, log(a(n))/n -> 1 as n -> infinity. - _Jonathan Sondow_, Jan 17 2005
%F A093880 a(n) = A003418(2n)/A003418(n) = A099996(n)/A003418(n).
%e A093880 The LCM of {1,2,3,4,5,6} is 60 and the LCM of {1,2,3} is 6, so a(3) = 60/6 = 10.
%p A093880 a:=n->lcm(seq(j,j=n+1..2*n))/lcm(seq(j,j=1..n)): seq(a(n),n=1..32); # _Emeric Deutsch_, Feb 02 2006
%t A093880 f[n_] := LCM @@ Table[i, {i, 2n}]/LCM @@ Table[i, {i, n}]; Table[ f[n], {n, 27}] (* _Robert G. Wilson v_, Jan 22 2005 *)
%Y A093880 Cf. A080397.
%K A093880 nonn
%O A093880 1,1
%A A093880 _Amarnath Murthy_, Apr 22 2004
%E A093880 More terms from _Emeric Deutsch_, Feb 02 2006
%E A093880 Entry revised by _N. J. A. Sloane_, Jan 24 2007