OFFSET
1,2
COMMENTS
Alternative name: 1 and numbers with smallest prime index not dividing all the other prime indices.
First differs from A339562 in having 45.
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.
Also 1 and Heinz numbers of integer partitions with smallest part not dividing all the others (counted by A338470). The Heinz number of a partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k), giving a bijective correspondence between positive integers and integer partitions.
EXAMPLE
The sequence of terms together with their prime indices begins:
1: {} 105: {2,3,4} 201: {2,19}
15: {2,3} 119: {4,7} 203: {4,10}
33: {2,5} 123: {2,13} 205: {3,13}
35: {3,4} 135: {2,2,2,3} 207: {2,2,9}
45: {2,2,3} 141: {2,15} 209: {5,8}
51: {2,7} 143: {5,6} 215: {3,14}
55: {3,5} 145: {3,10} 217: {4,11}
69: {2,9} 153: {2,2,7} 219: {2,21}
75: {2,3,3} 155: {3,11} 221: {6,7}
77: {4,5} 161: {4,9} 225: {2,2,3,3}
85: {3,7} 165: {2,3,5} 231: {2,4,5}
91: {4,6} 175: {3,3,4} 245: {3,4,4}
93: {2,11} 177: {2,17} 247: {6,8}
95: {3,8} 187: {5,7} 249: {2,23}
99: {2,2,5} 195: {2,3,6} 253: {5,9}
MATHEMATICA
Select[Range[100], #==1||With[{p=PrimePi/@First/@FactorInteger[#]}, !And@@IntegerQ/@(p/Min@@p)]&]
CROSSREFS
The case with maximum prime index not divisible by all others is A343338.
The case with maximum prime index divisible by all others is A343339.
A000005 counts divisors.
A000070 counts partitions with a selected part.
A001221 counts distinct prime factors.
A299702 lists Heinz numbers of knapsack partitions.
A339564 counts factorizations with a selected factor.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Apr 11 2021
STATUS
approved