A081886 Duplicate of A081530.
1, 5, 26, 77, 522, 669, 5772, 13827, 48610, 55991, 699612, 785633, 11359222
Offset: 1
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.
a(2) = 4 because the least common multiple of 1 and 2 is 2, and 2 * 2 = 4. a(3) = 18 because lcm(1,2,3) = 6, and 3 * 6 = 18. a(4) = 48 because lcm(1, 2, 3, 4) = 12, and 4 * 12 = 48.
a(n) := (n + 1)*LCM(VECTOR(k + 1, k, 0, n)) " Paul Barry, Aug 06 2004 "
Table[n*LCM@@Range[n], {n, 30}] (* Harvey P. Dale, Oct 09 2012 *)
l=vector(35); l[1]=1; print1("1, "); for(n=2,35, l[n]=lcm(l[n-1],n); print1(n*l[n],", ")) \\ Rick L. Shepherd, Aug 21 2006
Comments