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

A126574
a(n) = product of terms in n-th row of triangle A126571.
1
1, 6, 60, 980, 17010, 691152, 14385280, 553311000, 20549850750, 1183631840160, 40862208651264, 3546593581385400, 146387176845000000, 11600430026834880000, 876804182167691796480, 71417792752792726589856
OFFSET
1,2
MATHEMATICA
f[m_, n_] := Block[{k = 0, c = n}, While[c > 0, k++; While[GCD[k, m] > 1, k++ ]; c--; ]; k]; Table[Product[f[m, n], {m, n}], {n, 17}] (* Ray Chandler, Dec 29 2006 *)
CROSSREFS
Sequence in context: A296956 A366335 A308332 * A061573 A248655 A092356
KEYWORD
nonn
AUTHOR
Leroy Quet, Dec 28 2006
EXTENSIONS
Extended by Ray Chandler, Dec 29 2006
STATUS
approved