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”).

A119634
a(n) = lcm(1,...,2n+2)/2.
3
1, 6, 30, 420, 1260, 13860, 180180, 360360, 6126120, 116396280, 116396280, 2677114440, 13385572200, 40156716600, 1164544781400, 72201776446800, 72201776446800, 72201776446800, 2671465728531600, 2671465728531600
OFFSET
0,2
MATHEMATICA
Table[LCM @@ Range[2*n + 2]/2, {n, 0, 20}] (* Vaclav Kotesovec, Mar 04 2019 *)
PROG
(GAP) List([0..20], n->Lcm(List([1..2*n+2]))/2); # Muniru A Asiru, Mar 04 2019
(PARI) {a(n) = lcm(vector(2*n+2, i, i))/2}; \\ G. C. Greubel, Mar 05 2019
(Magma) [LCM([1..2*n+2])/2: n in [0..20]]; // G. C. Greubel, Mar 05 2019
(Sage) [lcm(range(1, 2*n+3))/2 for n in (0..20)] # G. C. Greubel, Mar 05 2019
CROSSREFS
Cf. A003418.
Column k=0 of A120101.
Sequence in context: A201135 A369135 A111876 * A256545 A349981 A075591
KEYWORD
nonn
AUTHOR
Paul Barry, Jun 09 2006
STATUS
approved