A325506 Product of Heinz numbers over all strict integer partitions of n.
1, 2, 3, 30, 70, 2310, 180180, 21441420, 6401795400, 200984366583000, 41615822944675980000, 10515527757483671302380000, 4919824049783476260137727416400000, 5158181210492841550866520676965246284000000, 29776760895364738730693151196801613158042403043600000000
Offset: 0
Keywords
Examples
The strict integer partitions of 6 are {(6), (5,1), (4,2), (3,2,1)}, with Heinz numbers {13,22,21,30}, with product 13*22*21*30 = 180180, so a(6) = 180180. The sequence of terms together with their prime indices begins: 1: {} 2: {1} 3: {2} 30: {1,2,3} 70: {1,3,4} 2310: {1,2,3,4,5} 180180: {1,1,2,2,3,4,5,6} 21441420: {1,1,2,2,3,4,4,5,6,7} 6401795400: {1,1,1,2,2,3,3,4,5,5,6,7,8} 200984366583000: {1,1,1,2,2,2,3,3,3,4,4,5,5,6,6,7,8,9} 41615822944675980000: {1,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,5,5,6,6,7,7,8,9,10}
Crossrefs
Programs
-
Mathematica
Table[Times@@Prime/@(Join@@Select[IntegerPartitions[n],UnsameQ@@#&]),{n,0,15}]
Comments