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.

A302521 Odd numbers whose prime indices are squarefree and have disjoint prime indices. Numbers n such that the n-th multiset multisystem is a set partition.

This page as a plain text file.
%I A302521 #4 Apr 10 2018 21:48:37
%S A302521 1,3,5,11,13,15,17,29,31,33,41,43,47,51,55,59,67,73,79,83,85,93,101,
%T A302521 109,113,123,127,137,139,141,143,145,149,155,157,163,165,167,177,179,
%U A302521 181,187,191,199,201,205,211,215,219,221,233,241,249,255,257,269,271
%N A302521 Odd numbers whose prime indices are squarefree and have disjoint prime indices. Numbers n such that the n-th multiset multisystem is a set partition.
%C A302521 A prime index of n is a number m such that prime(m) divides n.
%e A302521 Entry A302242 describes a correspondence between positive integers and multiset multisystems. In this case it gives the following sequence of set partitions.
%e A302521 01: {}
%e A302521 03: {{1}}
%e A302521 05: {{2}}
%e A302521 11: {{3}}
%e A302521 13: {{1,2}}
%e A302521 15: {{1},{2}}
%e A302521 17: {{4}}
%e A302521 29: {{1,3}}
%e A302521 31: {{5}}
%e A302521 33: {{1},{3}}
%e A302521 41: {{6}}
%e A302521 43: {{1,4}}
%e A302521 47: {{2,3}}
%e A302521 51: {{1},{4}}
%e A302521 55: {{2},{3}}
%e A302521 59: {{7}}
%e A302521 67: {{8}}
%e A302521 73: {{2,4}}
%e A302521 79: {{1,5}}
%e A302521 83: {{9}}
%e A302521 85: {{2},{4}}
%e A302521 93: {{1},{5}}
%t A302521 primeMS[n_]:=If[n===1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]];
%t A302521 Select[Range[1,100,2],UnsameQ@@Join@@primeMS/@primeMS[#]&]
%Y A302521 Cf. A000110, A000961, A001222, A003963, A005117, A007716, A056239, A275024, A279790, A281113, A294788, A301750, A302242, A302243, A302505.
%K A302521 nonn
%O A302521 1,2
%A A302521 _Gus Wiseman_, Apr 09 2018