login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A050320 Number of ways n is a product of squarefree numbers > 1. 47

%I #39 May 23 2021 02:38:10

%S 1,1,1,1,1,2,1,1,1,2,1,2,1,2,2,1,1,2,1,2,2,2,1,2,1,2,1,2,1,5,1,1,2,2,

%T 2,3,1,2,2,2,1,5,1,2,2,2,1,2,1,2,2,2,1,2,2,2,2,2,1,6,1,2,2,1,2,5,1,2,

%U 2,5,1,3,1,2,2,2,2,5,1,2,1,2,1,6,2,2,2,2,1,6,2,2,2,2,2,2,1,2,2,3,1,5,1

%N Number of ways n is a product of squarefree numbers > 1.

%C a(n) depends only on prime signature of n (cf. A025487). So a(24) = a(375) since 24 = 2^3*3 and 375 = 3*5^3 both have prime signature (3,1).

%C Broughan shows (Theorem 8) that the average value of a(n) is k exp(2*sqrt(log n)/sqrt(zeta(2)))/log(n)^(3/4) where k is about 0.18504. - _Charles R Greathouse IV_, May 21 2013

%C From _Gus Wiseman_, Aug 20 2020: (Start)

%C Also the number of set multipartitions (multisets of sets) of the multiset of prime indices of n. For example, the a(n) set multipartitions for n = 2, 6, 36, 60, 360 are:

%C {1} {12} {12}{12} {1}{123} {1}{12}{123}

%C {1}{2} {1}{2}{12} {12}{13} {12}{12}{13}

%C {1}{1}{2}{2} {1}{1}{23} {1}{1}{12}{23}

%C {1}{2}{13} {1}{1}{2}{123}

%C {1}{3}{12} {1}{2}{12}{13}

%C {1}{1}{2}{3} {1}{3}{12}{12}

%C {1}{1}{1}{2}{23}

%C {1}{1}{2}{2}{13}

%C {1}{1}{2}{3}{12}

%C {1}{1}{1}{2}{2}{3}

%C (End)

%H Giovanni Resta, <a href="/A050320/b050320.txt">Table of n, a(n) for n = 1..10000</a>

%H Kevin Broughan, <a href="http://www.math.waikato.ac.nz/~kab/papers/quadrafree2.pdf">Quadrafree factorisatio numerorum</a>, Rocky Mountain J. Math. 44 (3) (2014) 791-807.

%H <a href="/index/Eu#epf">Index entries for sequences computed from exponents in factorization of n</a>

%F Dirichlet g.f.: Product_{n is squarefree and > 1} (1/(1-1/n^s)).

%F a(n) = A050325(A101296(n)). - _R. J. Mathar_, May 26 2017

%F a(n!) = A103774(n); a(A006939(n)) = A337072(n). - _Gus Wiseman_, Aug 20 2020

%e For n = 36 we have three choices as 36 = 2*2*3*3 = 6*6 = 2*3*6 (but no factorizations with factors 4, 9, 12, 18 or 36 are allowed), thus a(36) = 3. - _Antti Karttunen_, Oct 21 2017

%t sub[w_, e_] := Block[{v = w}, v[[e]]--; v]; ric[w_, k_] := If[Max[w] == 0, 1, Block[{e, s, p = Flatten@Position[Sign@w, 1]}, s = Select[Prepend[#, First@p] & /@ Subsets[Rest@p], Total[1/2^#] <= k &]; Sum[ric[sub[w, e], Total[1/2^e]], {e, s}]]]; sig[w_] := sig[w] = ric[w, 1]; a[n_] := sig@ Sort[Last /@ FactorInteger[n]]; Array[a, 103] (* _Giovanni Resta_, May 21 2013 *)

%t sqfacs[n_]:=If[n<=1,{{}},Join@@Table[(Prepend[#,d]&)/@Select[sqfacs[n/d],Min@@#>=d&],{d,Select[Rest[Divisors[n]],SquareFreeQ]}]]

%t Table[Length[sqfacs[n]],{n,100}] (* _Gus Wiseman_, Aug 20 2020 *)

%o (Haskell)

%o a050320 n = h n $ tail $ a206778_row n where

%o h 1 _ = 1

%o h _ [] = 0

%o h m fs'@(f:fs) =

%o if f > m then 0 else if r > 0 then h m fs else h m' fs' + h m fs

%o where (m', r) = divMod m f

%o -- _Reinhard Zumkeller_, Dec 16 2013

%Y Cf. A001055, A005117, A050325. a(p^k)=1. a(A002110)=A000110.

%Y a(n!)=A103774(n).

%Y Cf. A206778.

%Y Differs from A259936 for the first time at n=36.

%Y A050326 is the strict case.

%Y A045778 counts strict factorizations.

%Y A089259 counts set multipartitions of integer partitions.

%Y A116540 counts normal set multipartitions.

%Y Cf. A008480, A124010, A317829, A318360.

%K nonn,easy,nice

%O 1,6

%A _Christian G. Bower_, Sep 15 1999

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 01:06 EDT 2024. Contains 371964 sequences. (Running on oeis4.)