A356935 Numbers whose prime indices all have odd bigomega (number of prime factors with multiplicity). Products of primes indexed by elements of A026424. MM-numbers of finite multisets of finite odd-length multisets of positive integers.
1, 3, 5, 9, 11, 15, 17, 19, 25, 27, 31, 33, 37, 41, 45, 51, 55, 57, 59, 61, 67, 71, 75, 81, 83, 85, 93, 95, 99, 103, 107, 109, 111, 113, 121, 123, 125, 127, 131, 135, 153, 155, 157, 165, 171, 177, 179, 181, 183, 185, 187, 191, 193, 197, 201, 205, 209, 211, 213
Offset: 1
Keywords
Examples
The initial terms and corresponding multiset partitions: 1: {} 3: {{1}} 5: {{2}} 9: {{1},{1}} 11: {{3}} 15: {{1},{2}} 17: {{4}} 19: {{1,1,1}} 25: {{2},{2}} 27: {{1},{1},{1}} 31: {{5}} 33: {{1},{3}} 37: {{1,1,2}} 41: {{6}} 45: {{1},{1},{2}} 51: {{1},{4}} 55: {{2},{3}} 57: {{1},{1,1,1}}
Crossrefs
Programs
-
Mathematica
primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[100],OddQ[Times@@Length/@primeMS/@primeMS[#]]&]
Comments