OFFSET
0,3
COMMENTS
For every cycle count LCM-sequence Axxxxxx in A073204 it holds that Axxxxxx(n) divides a(n). And this also applies to similar LCM-sequences induced by other "Catalan bijections", cf. A060113.
The next term (a(7)) has 184 digits. - Harvey P. Dale, Nov 21 2023
LINKS
MATHEMATICA
Table[LCM@@Range[CatalanNumber[n]], {n, 0, 7}] (* Harvey P. Dale, Nov 21 2023 *)
PROG
(PARI) a(n) = lcm([1..binomial(2*n, n)/(n+1)]); \\ Michel Marcus, Mar 21 2018
(GAP) List([0..7], n->Lcm([1..Binomial(2*n, n)/(n+1)])); # Muniru A Asiru, Mar 21 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jan 04 2003
STATUS
approved