A368100 Numbers of which it is possible to choose a different prime factor of each prime index.
1, 3, 5, 7, 11, 13, 15, 17, 19, 23, 29, 31, 33, 35, 37, 39, 41, 43, 47, 51, 53, 55, 59, 61, 65, 67, 69, 71, 73, 77, 79, 83, 85, 87, 89, 91, 93, 95, 97, 101, 103, 107, 109, 111, 113, 119, 123, 127, 129, 131, 137, 139, 141, 143, 145, 149, 151, 155, 157, 161, 163
Offset: 1
Keywords
Examples
The prime indices of 2849 are {4,5,12}, with prime factors {{2,2},{5},{2,2,3}}, and of the two choices (2,5,2) and (2,5,3) the latter has all different terms, so 2849 is in the sequence. The terms together with their prime indices of prime indices begin: 1: {} 3: {{1}} 5: {{2}} 7: {{1,1}} 11: {{3}} 13: {{1,2}} 15: {{1},{2}} 17: {{4}} 19: {{1,1,1}} 23: {{2,2}} 29: {{1,3}} 31: {{5}} 33: {{1},{3}} 35: {{2},{1,1}} 37: {{1,1,2}} 39: {{1},{1,2}}
Crossrefs
Positions of positive terms in A367771.
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n], {p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[100], Select[Tuples[prix/@prix[#]], UnsameQ@@#&]!={}&]
Comments