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 A324170 #5 Feb 19 2019 00:08:09 %S A324170 2117,3973,4234,4843,5183,5249,5891,6351,6757,7181,7801,7946,8249, %T A324170 8468,8903,9193,9686,9727,10019,10063,10366,10498,10585,11051,11513, %U A324170 11567,11782,11857,11919,12557,12629,12702,12851,13021,13193,13459,13514,13631,14123,14362 %N A324170 Numbers whose multiset multisystem (A302242) is crossing. %C A324170 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 of n is obtained by taking the multiset of prime indices of each prime index of n. %C A324170 A multiset of multisets is crossing if it contains a 2-element submultiset of the form {{...x...y...}, {...z...t...}} where x < z < y < t or z < x < t < y. %e A324170 The sequence of terms together with their multiset multisystems begins: %e A324170 2117: {{1,3},{2,4}} %e A324170 3973: {{1,3},{2,5}} %e A324170 4234: {{},{1,3},{2,4}} %e A324170 4843: {{1,3},{2,6}} %e A324170 5183: {{1,1,3},{2,4}} %e A324170 5249: {{1,3},{1,2,4}} %e A324170 5891: {{1,4},{2,5}} %e A324170 6351: {{1},{1,3},{2,4}} %e A324170 6757: {{1,3},{2,7}} %e A324170 7181: {{1,4},{2,6}} %e A324170 7801: {{1,3},{2,8}} %e A324170 7946: {{},{1,3},{2,5}} %e A324170 8249: {{2,4},{1,2,3}} %e A324170 8468: {{},{},{1,3},{2,4}} %e A324170 8903: {{1,3},{2,2,4}} %e A324170 9193: {{1,3},{1,2,5}} %e A324170 9686: {{},{1,3},{2,6}} %e A324170 9727: {{1,1,3},{2,5}} %t A324170 primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; %t A324170 croXQ[stn_]:=MatchQ[stn,{___,{___,x_,___,y_,___},___,{___,z_,___,t_,___},___}/;x<z<y<t||z<x<t<y]; %t A324170 Select[Range[10000],croXQ[primeMS/@primeMS[#]]&] %Y A324170 Cf. A000108, A001055, A001263, A002662, A016098, A054726, A056239, A099947, A112798, A302242. %Y A324170 Cf. A324166, A324167, A324168, A324169, A324171, A324173. %K A324170 nonn %O A324170 1,1 %A A324170 _Gus Wiseman_, Feb 17 2019