A302594 Numbers whose prime indices other than 1 are equal prime numbers.
1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 16, 17, 18, 20, 22, 24, 25, 27, 31, 32, 34, 36, 40, 41, 44, 48, 50, 54, 59, 62, 64, 67, 68, 72, 80, 81, 82, 83, 88, 96, 100, 108, 109, 118, 121, 124, 125, 127, 128, 134, 136, 144, 157, 160, 162, 164, 166, 176, 179, 191, 192
Offset: 1
Keywords
Examples
Entry A302242 describes a correspondence between positive integers and multiset multisystems. In this case it gives the following sequence of set systems. 01: {} 02: {{}} 03: {{1}} 04: {{},{}} 05: {{2}} 06: {{},{1}} 08: {{},{},{}} 09: {{1},{1}} 10: {{},{2}} 11: {{3}} 12: {{},{},{1}} 16: {{},{},{},{}} 17: {{4}} 18: {{},{1},{1}} 20: {{},{},{2}} 22: {{},{3}} 24: {{},{},{},{1}}
Crossrefs
Programs
-
Mathematica
primeMS[n_]:=If[n===1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[400],MatchQ[Union[DeleteCases[primeMS[#],1]],{_?PrimeQ}|{}]&]
Comments