OFFSET
1,3
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..897
EXAMPLE
The LCM of the first 7 terms is 60. So a(8) = 7!/60 = 84.
MAPLE
A131120 := proc(n) option remember ; if n = 1 then 1; else (n-1)!/lcm(seq(A131120(i), i=1..n-1)) ; fi ; end: seq(A131120(n), n=1..40) ; # R. J. Mathar, Oct 17 2007
MATHEMATICA
nxt[{a_, n_, lst_}]:=Module[{l2=lst, x=(n+1)!/LCM@@lst}, {x, n+1, AppendTo[ l2, x]}]; Transpose[NestList[nxt, {1, 0, {1}}, 30]][[1]] (* Harvey P. Dale, Jun 07 2014 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Jun 15 2007
EXTENSIONS
More terms from R. J. Mathar, Oct 17 2007
STATUS
approved