OFFSET
1,2
COMMENTS
A prime index of n is a number m such that prime(m) divides n. The multiset of prime indices of n is row n of A112798.
The Heinz number of an integer partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k), giving a bijective correspondence between positive integers and integer partitions. a(n) gives the n-th Heinz number of an integer partition with no 1's and pairwise coprime distinct parts, where a singleton is always considered coprime (A338317).
EXAMPLE
The sequence of terms together with their prime indices begins:
1: {} 33: {2,5} 71: {20}
3: {2} 35: {3,4} 73: {21}
5: {3} 37: {12} 75: {2,3,3}
7: {4} 41: {13} 77: {4,5}
9: {2,2} 43: {14} 79: {22}
11: {5} 45: {2,2,3} 81: {2,2,2,2}
13: {6} 47: {15} 83: {23}
15: {2,3} 49: {4,4} 85: {3,7}
17: {7} 51: {2,7} 89: {24}
19: {8} 53: {16} 93: {2,11}
23: {9} 55: {3,5} 95: {3,8}
25: {3,3} 59: {17} 97: {25}
27: {2,2,2} 61: {18} 99: {2,2,5}
29: {10} 67: {19} 101: {26}
31: {11} 69: {2,9} 103: {27}
MATHEMATICA
Select[Range[1, 100, 2], #==1||PrimePowerQ[#]||CoprimeQ@@Union[PrimePi/@First/@FactorInteger[#]]&]
CROSSREFS
A338317 counts the partitions with these Heinz numbers.
A337694 is a pairwise non-coprime instead of pairwise coprime version.
A302797 lists squarefree numbers whose distinct parts are pairwise coprime.
A337561 counts pairwise coprime strict compositions.
A337697 counts pairwise coprime compositions with no 1's.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Oct 24 2020
STATUS
approved
