A090586 Denominator of Sum/Product of first n numbers.
1, 2, 1, 12, 8, 240, 180, 1120, 8064, 725760, 604800, 79833600, 68428800, 830269440, 10897286400, 2615348736000, 2324754432000, 711374856192000, 640237370572800, 11585247657984000, 221172909834240000, 102181884343418880000, 93666727314800640000
Offset: 1
Links
- Robert Israel, Table of n, a(n) for n = 1..451
Programs
-
Magma
[Denominator(n + 1) / (2*Factorial(n - 1)): n in [1..30]]; // Vincenzo Librandi, Oct 15 2018
-
Maple
seq(denom((n+1)/(2*(n-1)!)),n=1..25); # Robert Israel, Oct 14 2018
-
Mathematica
Table[Denominator[(n + 1) / (2 (n - 1)!)], {n, 25}] (* Vincenzo Librandi, Oct 15 2018 *)
Comments