Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #7 Sep 16 2019 12:38:34
%S 1,1,1,1,1,2,1,1,1,2,1,3,1,2,1,1,1,2,1,4,3,2,1,3,1,2,1,4,1,2,1,1,1,2,
%T 1,4,1,2,3,5,1,6,1,4,1,2,1,3,1,2,1,4,1,2,1,7,3,2,1,4,1,2,7,1,5,2,1,4,
%U 1,2,1,8,1,2,1,4,1,6,1,5,1,2,1,12,1,2,3
%N Quotient of n over the maximum stable divisor of n.
%C 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. A number is stable if its distinct prime indices are pairwise indivisible. Stable numbers are listed in A316476.
%H Gus Wiseman, <a href="https://docs.google.com/document/d/e/2PACX-1vSX9dPMGJhxB8rOknCGvOs6PiyhupdWNpqLsnphdgU6MEVqFBnWugAXidDhwHeKqZe_YnUqYeGOXsOk/pub">Sequences counting and encoding certain classes of multisets</a>
%F a(n) = n/A327393(n).
%e The stable divisors of 60 are {1, 2, 3, 4, 5, 15}, so a(60) = 60/15 = 4.
%t stableQ[u_,Q_]:=!Apply[Or,Outer[#1=!=#2&&Q[#1,#2]&,u,u,1],{0,1}];
%t Table[n/Max[Select[Divisors[n],stableQ[PrimePi/@First/@FactorInteger[#],Divisible]&]],{n,100}]
%Y See link for additional cross-references.
%Y Cf. A000005, A033273, A303362.
%K nonn
%O 1,6
%A _Gus Wiseman_, Sep 15 2019