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.

A319002 Number of ordered factorizations of n where the sequence of GCDs of prime indices (A289508) of the factors is weakly increasing.

This page as a plain text file.
%I A319002 #8 Sep 11 2018 17:01:24
%S A319002 1,1,1,2,1,2,1,4,2,2,1,5,1,2,2,8,1,4,1,5,2,2,1,12,2,2,4,5,1,6,1,16,2,
%T A319002 2,2,11,1,2,2,12,1,5,1,5,4,2,1,28,2,4,2,5,1,8,2,12,2,2,1,18,1,2,5,32,
%U A319002 2,6,1,5,2,6,1,29,1,2,4,5,2,5,1,28,8,2,1
%N A319002 Number of ordered factorizations of n where the sequence of GCDs of prime indices (A289508) of the factors is weakly increasing.
%C A319002 Also the number of ordered multiset partitions of the multiset of prime indices of n where the sequence of GCDs of the blocks is weakly increasing. If we form a multiorder by treating integer partitions (a,...,z) as multiarrows GCD(a,...,z) <= {z,...,a}, then a(n) is the number of triangles whose composite ground is the integer partition with Heinz number n.
%e A319002 The a(36) = 11 ordered factorizations:
%e A319002   (2*2*3*3),
%e A319002   (2*2*9), (2*6*3), (6*2*3), (4*3*3),
%e A319002   (2*18), (18*2), (12*3), (4*9), (6*6),
%e A319002   (36).
%e A319002 The a(36) = 11 ordered multiset partitions:
%e A319002      {{1,1,2,2}}
%e A319002     {{1},{1,2,2}}
%e A319002     {{1,2,2},{1}}
%e A319002     {{1,1,2},{2}}
%e A319002     {{1,1},{2,2}}
%e A319002     {{1,2},{1,2}}
%e A319002    {{1},{1},{2,2}}
%e A319002    {{1},{1,2},{2}}
%e A319002    {{1,2},{1},{2}}
%e A319002    {{1,1},{2},{2}}
%e A319002   {{1},{1},{2},{2}}
%t A319002 facs[n_]:=If[n<=1,{{}},Join@@Table[(Prepend[#1,d]&)/@Select[facs[n/d],Min@@#1>=d&],{d,Rest[Divisors[n]]}]];
%t A319002 gix[n_]:=GCD@@PrimePi/@If[n==1,{},FactorInteger[n]][[All,1]];
%t A319002 Table[Length[Select[Join@@Permutations/@facs[n],OrderedQ[gix/@#]&]],{n,100}]
%Y A319002 Cf. A000837, A007716, A001970, A056239, A063834, A289508, A296150, A316223, A317545, A318559, A319001, A319004.
%K A319002 nonn
%O A319002 1,4
%A A319002 _Gus Wiseman_, Sep 07 2018