A296134 Number of twice-factorizations of n of type (R,Q,R).
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, 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, 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
Offset: 1
Keywords
Examples
The a(16) = 4 twice-factorizations: (2)*(2*2*2), (2*2*2*2), (4*4), (16).
Links
Crossrefs
Programs
-
Mathematica
Table[DivisorSum[GCD@@FactorInteger[n][[All,2]],PartitionsQ],{n,100}]
-
PARI
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)); A052409(n) = { my(k=ispower(n)); if(k, k, n>1); }; \\ From A052409 A296134(n) = if(1==n,n,sumdiv(A052409(n),d,A000009(d))); \\ Antti Karttunen, Jul 29 2018
Formula
From Antti Karttunen, Jul 31 2018: (Start)
Extensions
More terms from Antti Karttunen, Jul 29 2018
Comments