cp's OEIS Frontend

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.

A322554 Numbers whose product of prime indices is a power of a squarefree number (A072774).

This page as a plain text file.
%I A322554 #5 Dec 16 2018 17:59:02
%S A322554 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,
%T A322554 27,28,29,30,31,32,33,34,36,38,40,41,42,43,44,46,47,48,49,50,51,52,53,
%U A322554 54,55,56,57,58,59,60,62,63,64,66,67,68,72,73,76,79,80
%N A322554 Numbers whose product of prime indices is a power of a squarefree number (A072774).
%C A322554 The complement is {35, 37, 39, 45, 61, 65, ...}.
%C A322554 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 multisystem 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 multisystem with MM-number 78 is {{},{1},{1,2}}. This sequence lists all MM-numbers of regular multiset multisystems, where regularity means all vertex-degrees are equal.
%e A322554 Most small numbers belong to this sequence. However, the sequence of multiset multisystems whose MM-numbers do not belong to this sequence begins:
%e A322554   35: {{2},{1,1}}
%e A322554   37: {{1,1,2}}
%e A322554   39: {{1},{1,2}}
%e A322554   45: {{1},{1},{2}}
%e A322554   61: {{1,2,2}}
%e A322554   65: {{2},{1,2}}
%e A322554   69: {{1},{2,2}}
%e A322554   70: {{},{2},{1,1}}
%e A322554   71: {{1,1,3}}
%e A322554   74: {{},{1,1,2}}
%e A322554   75: {{1},{2},{2}}
%e A322554   77: {{1,1},{3}}
%e A322554   78: {{},{1},{1,2}}
%e A322554   87: {{1},{1,3}}
%e A322554   89: {{1,1,1,2}}
%e A322554   90: {{},{1},{1},{2}}
%e A322554   91: {{1,1},{1,2}}
%e A322554   95: {{2},{1,1,1}}
%e A322554   99: {{1},{1},{3}}
%t A322554 primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]];
%t A322554 Select[Range[100],SameQ@@Last/@FactorInteger[Times@@primeMS[#]]&]
%Y A322554 Cf. A003963, A056239, A062503, A072774, A112798, A302242, A302491, A320325, A320698, A322553.
%K A322554 nonn
%O A322554 1,2
%A A322554 _Gus Wiseman_, Dec 15 2018