OFFSET
0,2
COMMENTS
FORMULA
EXAMPLE
The integer partitions of 3 are {(3), (2,1), (1,1,1)}, with Heinz numbers {5,6,8}, with product 240, so a(3) = 240.
The sequence of terms together with their prime indices begins:
1: {}
2: {1}
12: {1,1,2}
240: {1,1,1,1,2,3}
120960: {1,1,1,1,1,1,1,2,2,2,3,4}
638668800: {1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,5}
MATHEMATICA
Table[Times@@Prime/@(Join@@IntegerPartitions[n]), {n, 0, 5}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, May 06 2019
STATUS
approved