A375251 Denominators of the polynomials A375252 (polynomial part of the partition function restricted to partitions of the integer x with parts in (1,2,...,n)).
1, 4, 72, 288, 86400, 1036800, 152409600, 1219276800, 438939648000, 26336378880000, 6373403688960000, 229442532802560000, 2714305163054284800000, 228001633696559923200000, 3420024505448398848000000, 164161176261523144704000000, 759081279033283021111296000000
Offset: 1
Programs
-
Maple
read(PARTITIONS): # See the Sills & Zeilberger paper cited in A375252. seq(denom(op(pmnPC(n,x)[1])), n = 1..17); # Or, standalone: W := proc(n) local k; exp(t*x)/mul(1 - exp(-t*k), k=1..n); expand(series(%, t, n+1)); coeff(%, t, -1) end: a := n -> denom(W(n)): seq(a(n), n = 1..17);