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!)
A316784 Number of orderless identity tree-factorizations of n. 2

%I #7 Nov 18 2018 19:26:12

%S 1,1,1,1,1,2,1,2,1,2,1,4,1,2,2,3,1,4,1,4,2,2,1,10,1,2,2,4,1,8,1,6,2,2,

%T 2,13,1,2,2,10,1,8,1,4,4,2,1,26,1,4,2,4,1,10,2,10,2,2,1,28,1,2,4,13,2,

%U 8,1,4,2,8,1,46,1,2,4,4,2,8,1,26,3,2,1

%N Number of orderless identity tree-factorizations of n.

%C A factorization of n is a finite nonempty multiset of positive integers greater than 1 with product n. An orderless identity tree-factorization of n is either (case 1) the number n itself or (case 2) a finite set of two or more distinct orderless identity tree-factorizations, one of each factor in a factorization of n.

%C a(n) depends only on the prime signature of n. - _Andrew Howroyd_, Nov 18 2018

%H Andrew Howroyd, <a href="/A316784/b316784.txt">Table of n, a(n) for n = 1..10000</a>

%F a(p^n) = A300660(n) for prime p. - _Andrew Howroyd_, Nov 18 2018

%e The a(24)=10 orderless identity tree-factorizations:

%e 24

%e (4*6)

%e (3*8)

%e (2*12)

%e (2*3*4)

%e (4*(2*3))

%e (3*(2*4))

%e (2*(2*6))

%e (2*(3*4))

%e (2*(2*(2*3)))

%t postfacs[n_]:=If[n<=1,{{}},Join@@Table[Map[Prepend[#,d]&,Select[postfacs[n/d],Min@@#>=d&]],{d,Rest[Divisors[n]]}]];

%t oltsfacs[n_]:=If[n<=1,{{}},Prepend[Select[Union@@Function[q,Sort/@Tuples[oltsfacs/@q]]/@DeleteCases[postfacs[n],{n}],UnsameQ@@#&],n]];

%t Table[Length[oltsfacs[n]],{n,100}]

%o (PARI) seq(n)={my(v=vector(n), w=vector(n)); w[1]=v[1]=1; for(k=2, n, w[k]=v[k]+1; forstep(j=n\k*k, k, -k, my(i=j, e=0); while(i%k==0, i/=k; e++; v[j] += binomial(w[k], e)*v[i]))); w} \\ _Andrew Howroyd_, Nov 18 2018

%Y Cf. A001055, A001678, A004111, A292504, A292505, A295279, A300660, A316782.

%K nonn

%O 1,6

%A _Gus Wiseman_, Jul 13 2018

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 July 26 14:44 EDT 2024. Contains 374635 sequences. (Running on oeis4.)