login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A325229
Heinz numbers of integer partitions such that lesser of the maximum part and the number of parts is 2.
4
6, 9, 10, 12, 14, 15, 18, 21, 22, 24, 25, 26, 27, 33, 34, 35, 36, 38, 39, 46, 48, 49, 51, 54, 55, 57, 58, 62, 65, 69, 72, 74, 77, 81, 82, 85, 86, 87, 91, 93, 94, 95, 96, 106, 108, 111, 115, 118, 119, 121, 122, 123, 129, 133, 134, 141, 142, 143, 144, 145, 146
OFFSET
1,1
COMMENTS
The enumeration of these partitions by sum is given by A265283.
The Heinz number of an integer partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k).
EXAMPLE
The sequence of terms together with their prime indices begins:
6: {1,2}
9: {2,2}
10: {1,3}
12: {1,1,2}
14: {1,4}
15: {2,3}
18: {1,2,2}
21: {2,4}
22: {1,5}
24: {1,1,1,2}
25: {3,3}
26: {1,6}
27: {2,2,2}
33: {2,5}
34: {1,7}
35: {3,4}
36: {1,1,2,2}
38: {1,8}
39: {2,6}
46: {1,9}
MATHEMATICA
Select[Range[300], Min[PrimeOmega[#], PrimePi[FactorInteger[#][[-1, 1]]]]==2&]
KEYWORD
nonn
AUTHOR
Gus Wiseman, Apr 12 2019
STATUS
approved