%I #16 Aug 07 2018 12:15:02
%S 1,1,1,2,1,1,1,3,2,1,1,1,1,1,1,4,1,1,1,1,1,1,1,1,2,1,3,1,1,1,1,4,1,1,
%T 1,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,1,1,1,1,
%U 1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1
%N Number of twice-factorizations of n of type (R,Q,R).
%C a(n) is the number of ways to choose a strict integer partition of a divisor of A052409(n).
%H Antti Karttunen, <a href="/A296134/b296134.txt">Table of n, a(n) for n = 1..65537</a>
%H <a href="/index/Eu#epf">Index entries for sequences computed from exponents in factorization of n</a>
%F From _Antti Karttunen_, Jul 31 2018: (Start)
%F a(1) = 1; for n > 1, a(n) = Sum_{d|A052409(n)} A000009(d).
%F a(n) = A047966(A052409(n)). (End)
%e The a(16) = 4 twice-factorizations: (2)*(2*2*2), (2*2*2*2), (4*4), (16).
%t Table[DivisorSum[GCD@@FactorInteger[n][[All,2]],PartitionsQ],{n,100}]
%o (PARI)
%o A000009(n,k=(n-!(n%2))) = if(!n,1,my(s=0); while(k >= 1, if(k<=n, s += A000009(n-k,k)); k -= 2); (s));
%o A052409(n) = { my(k=ispower(n)); if(k, k, n>1); }; \\ From A052409
%o A296134(n) = if(1==n,n,sumdiv(A052409(n),d,A000009(d))); \\ _Antti Karttunen_, Jul 29 2018
%Y Cf. A000005, A000009, A001055, A047966, A047968, A052409, A052410, A089723, A281113, A295923, A295924, A295931, A295935, A296133.
%K nonn
%O 1,4
%A _Gus Wiseman_, Dec 05 2017
%E More terms from _Antti Karttunen_, Jul 29 2018