A329630 Products of distinct primes of nonprime squarefree index.
1, 2, 13, 26, 29, 43, 47, 58, 73, 79, 86, 94, 101, 113, 137, 139, 146, 149, 158, 163, 167, 181, 199, 202, 226, 233, 257, 269, 271, 274, 278, 293, 298, 313, 317, 326, 334, 347, 349, 362, 373, 377, 389, 397, 398, 421, 439, 443, 449, 466, 467, 487, 491, 499, 514
Offset: 1
Keywords
Examples
The sequence of terms together with their corresponding sets of sets begins: 1: {} 2: {{}} 13: {{1,2}} 26: {{},{1,2}} 29: {{1,3}} 43: {{1,4}} 47: {{2,3}} 58: {{},{1,3}} 73: {{2,4}} 79: {{1,5}} 86: {{},{1,4}} 94: {{},{2,3}} 101: {{1,6}} 113: {{1,2,3}} 137: {{2,5}} 139: {{1,7}} 146: {{},{2,4}} 149: {{3,4}} 158: {{},{1,5}} 163: {{1,8}}
Crossrefs
Programs
-
Mathematica
primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[100],SquareFreeQ[#]&&And@@SquareFreeQ/@primeMS[#]&&!MemberQ[primeMS[#],_?PrimeQ]&]
Comments