OFFSET
1,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..50
FORMULA
a(n) = lcm(seq(denominator(a(n, m)), m=1..n)) with the a(n, m) formula given in A089505(n, m) but without the D(n) factor in front and lcm denotes the least common multiple of a set of numbers.
MATHEMATICA
a[n_, m_] := (-1)^(n-m)*FactorialPower[m+2, 3]^(n-1)/(Product[ FactorialPower[m+2, 3] - FactorialPower[r+2, 3], {r, 1, m-1}]*Product[ FactorialPower[r+2, 3] - FactorialPower[m+2, 3], {r, m+1, n}]); a[n_] := LCM @@ Table[Denominator[a[n, m]], {m, 1, n}]; Array[a, 11] (* Jean-François Alcover, Sep 02 2016 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Dec 01 2003
EXTENSIONS
a(12)-a(13) from Vincenzo Librandi, Mar 15 2018
STATUS
approved