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.

A323087 Number of strict factorizations of n into factors > 1 such that no factor is a power of any other factor.

This page as a plain text file.
%I A323087 #5 Jan 04 2019 17:33:38
%S A323087 1,1,1,1,1,2,1,1,1,2,1,3,1,2,2,1,1,3,1,3,2,2,1,4,1,2,1,3,1,5,1,2,2,2,
%T A323087 2,5,1,2,2,4,1,5,1,3,3,2,1,5,1,3,2,3,1,4,2,4,2,2,1,9,1,2,3,1,2,5,1,3,
%U A323087 2,5,1,8,1,2,3,3,2,5,1,5,1,2,1,9,2,2,2
%N A323087 Number of strict factorizations of n into factors > 1 such that no factor is a power of any other factor.
%e A323087 The a(60) = 9 factorizations:
%e A323087   (2*3*10), (2*5*6), (3*4*5),
%e A323087   (2*30), (3*20), (4*15), (5*12), (6*10),
%e A323087   (60).
%t A323087 strfacs[n_]:=If[n<=1,{{}},Join@@Table[Map[Prepend[#,d]&,Select[strfacs[n/d],Min@@#>d&]],{d,Rest[Divisors[n]]}]];
%t A323087 stableQ[u_,Q_]:=!Apply[Or,Outer[#1=!=#2&&Q[#1,#2]&,u,u,1],{0,1}];
%t A323087 Table[Length[Select[strfacs[n],stableQ[#,IntegerQ[Log[#1,#2]]&]&]],{n,100}]
%Y A323087 Cf. A001597, A007916, A025147, A045778, A052410, A087897, A275972, A305150, A323054, A323086, A323090, A323091.
%K A323087 nonn
%O A323087 1,6
%A A323087 _Gus Wiseman_, Jan 04 2019