This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A329630 #5 Nov 19 2019 16:35:58 %S A329630 1,2,13,26,29,43,47,58,73,79,86,94,101,113,137,139,146,149,158,163, %T A329630 167,181,199,202,226,233,257,269,271,274,278,293,298,313,317,326,334, %U A329630 347,349,362,373,377,389,397,398,421,439,443,449,466,467,487,491,499,514 %N A329630 Products of distinct primes of nonprime squarefree index. %C A329630 A prime index of n is a number m such that prime(m) divides n. The multiset of prime indices of n is row n of A112798. The multiset of multisets with MM-number n is formed by taking the multiset of prime indices of each part of the multiset of prime indices of n. For example, the prime indices of 78 are {1,2,6}, so the multiset of multisets with MM-number 78 is {{},{1},{1,2}}. This sequence lists all MM-numbers of sets of non-singleton sets. %e A329630 The sequence of terms together with their corresponding sets of sets begins: %e A329630 1: {} %e A329630 2: {{}} %e A329630 13: {{1,2}} %e A329630 26: {{},{1,2}} %e A329630 29: {{1,3}} %e A329630 43: {{1,4}} %e A329630 47: {{2,3}} %e A329630 58: {{},{1,3}} %e A329630 73: {{2,4}} %e A329630 79: {{1,5}} %e A329630 86: {{},{1,4}} %e A329630 94: {{},{2,3}} %e A329630 101: {{1,6}} %e A329630 113: {{1,2,3}} %e A329630 137: {{2,5}} %e A329630 139: {{1,7}} %e A329630 146: {{},{2,4}} %e A329630 149: {{3,4}} %e A329630 158: {{},{1,5}} %e A329630 163: {{1,8}} %t A329630 primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; %t A329630 Select[Range[100],SquareFreeQ[#]&&And@@SquareFreeQ/@primeMS[#]&&!MemberQ[primeMS[#],_?PrimeQ]&] %Y A329630 MM-numbers of sets of nonempty sets are A329629. %Y A329630 Products of primes of nonprime squarefree index are A320630. %Y A329630 Products of prime numbers of squarefree index are A302478. %Y A329630 Products of primes of nonprime index are A320628. %Y A329630 Cf. A005117, A056239, A112798, A302242, A302494, A329557. %Y A329630 Classes of MM-numbers: A305078 (connected), A316476 (antichains), A318991 (chains), A320456 (covers), A329559 (clutters). %K A329630 nonn %O A329630 1,2 %A A329630 _Gus Wiseman_, Nov 18 2019