OFFSET
1,1
COMMENTS
REFERENCES
A. Murthy, Some new Smarandache sequences, functions and partitions, Smarandache Notions Journal Vol. 11 N. 1-2-3 Spring 2000 (but beware errors).
FORMULA
a(n) = a(n-1)*lcm(a(n-1),2n) = a(n-1)* A014963(n). - Zak Seidov, Aug 01 2009
EXAMPLE
a(3) = lcm{2,4,6} = 12;
a(7) = lcm{2,4,6,8,10,12,14} = 840.
MATHEMATICA
SZ={2}; n=2; L=2; Do[L=LCM[L, 2n]; AppendTo[SZ, L]; n++, {99}]; SZ (* Zak Seidov, Aug 01 2009 *)
Table[LCM@@Range[2, 2n, 2], {n, 30}] (* Harvey P. Dale, Oct 09 2011 *)
PROG
(Haskell)
a051426 n = foldl lcm 1 [2, 4..2*n] -- Reinhard Zumkeller, Apr 25 2011
(PARI) a(n)=2*lcm([1..n]) \\ Charles R Greathouse IV, Oct 28 2016
CROSSREFS
KEYWORD
easy,nice,nonn
AUTHOR
EXTENSIONS
a(6), a(7) and a(8) corrected by T. D. Noe, Feb 08 2008
Corrected the example, which did not reflect the sequence values provided. - Michael Davies (mykdavies+oeis(AT)gmail.com), Oct 10 2008
Edited by N. J. A. Sloane, Jul 31 2009 at the suggestion of R. J. Mathar
STATUS
approved