OFFSET
1,2
COMMENTS
EXAMPLE
The sequence of terms together with their prime indices begins:
1: {}
2: {1}
3: {2}
5: {3}
7: {4}
11: {5}
13: {6}
15: {2,3}
17: {7}
19: {8}
23: {9}
29: {10}
31: {11}
33: {2,5}
35: {3,4}
37: {12}
41: {13}
43: {14}
47: {15}
51: {2,7}
MATHEMATICA
primeMS[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Select[Range[100], !MatchQ[primeMS[#], {___, x_, y_, ___}/; Divisible[y, x]]&]
CROSSREFS
A subset of A005117.
These are the Heinz numbers of the partitions counted by A328171.
The version for relatively prime instead of indivisible is A328335.
Compositions without consecutive divisibilities are A328460.
Numbers whose binary indices lack consecutive divisibilities are A328593.
The version with all pairs indivisible is A304713.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Oct 26 2019
STATUS
approved