A161887 A product of quotients of factorials.
1, 2, 6, 12, 60, 120, 840, 7560, 15120, 110880, 166320, 1441440, 2882880, 10810800, 43243200, 183783600, 367567200, 2793510720, 6983776800, 58663725120, 117327450240, 299836817280, 2698531355520, 7495920432000
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..1669
Programs
-
Maple
a := proc(n) local m,k; m := nops(convert(n,base,2)); mul(iquo(n,2^k)!/iquo(n,2^(k+1))!^2,k=1..m-1) end: seq(a(i),i=1..50): A:=sort(convert({%},list));
-
Mathematica
b[n_, k_] := Floor[n/2^k]!; c[n_] := Product[b[n, k]/b[n, k+1]^2, {k, 1, Log[2, n]}]; A = Array[c, 50] // DeleteDuplicates // Sort (* Jean-François Alcover, Jun 17 2019 *)
Comments