A387113 Numbers whose prime indices do not have (strictly) choosable initial intervals.
4, 8, 12, 16, 18, 20, 24, 27, 28, 32, 36, 40, 44, 48, 52, 54, 56, 60, 64, 68, 72, 76, 80, 81, 84, 88, 90, 92, 96, 100, 104, 108, 112, 116, 120, 124, 126, 128, 132, 135, 136, 140, 144, 148, 150, 152, 156, 160, 162, 164, 168, 172, 176, 180, 184, 188, 189, 192
Offset: 1
Examples
The prime indices of 18 are {1,2,2}, with initial intervals ({1},{1,2},{1,2}), which have choices (1,1,1), (1,1,2), (1,2,1), (1,2,2), and since none of these are strict, 18 is in the sequence. The prime indices of 85 are {3,7}, with initial intervals {{1,2,3},{1,2,3,4,5,6,7}}, which are choosable, so 85 is in not the sequence. The prime indices of 90 are {1,2,2,3}, with initial intervals {{1},{1,2},{1,2},{1,2,3}}, which are not choosable, so 90 is in the sequence. The terms together with their prime indices begin: 4: {1,1} 8: {1,1,1} 12: {1,1,2} 16: {1,1,1,1} 18: {1,2,2} 20: {1,1,3} 24: {1,1,1,2} 27: {2,2,2} 28: {1,1,4} 32: {1,1,1,1,1} 36: {1,1,2,2} 40: {1,1,1,3} 44: {1,1,5} 48: {1,1,1,1,2} 52: {1,1,6} 54: {1,2,2,2} 56: {1,1,1,4} 60: {1,1,2,3} 64: {1,1,1,1,1,1}
Crossrefs
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[100],Select[Tuples[Range/@prix[#]],UnsameQ@@#&]=={}&]
Comments