OFFSET
1,2
COMMENTS
The Heinz number of an integer partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k), so these are Heinz numbers of integer partitions whose multiplicities, starting from the largest part through to the smallest, form an initial interval of positive integers. The enumeration of these partitions by sum is given by A179269.
EXAMPLE
The sequence of terms together with their prime indices begins:
1: {}
2: {1}
3: {2}
5: {3}
7: {4}
11: {5}
12: {1,1,2}
13: {6}
17: {7}
19: {8}
20: {1,1,3}
23: {9}
28: {1,1,4}
29: {10}
31: {11}
37: {12}
41: {13}
43: {14}
44: {1,1,5}
45: {2,2,3}
MATHEMATICA
Select[Range[100], Last/@If[#==1, {}, FactorInteger[#]]==Range[PrimeNu[#], 1, -1]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, May 04 2019
STATUS
approved