A324924 Irregular triangle read by rows giving the factorization of n into factors q(i) = prime(i)/i, i > 0.
1, 1, 2, 1, 1, 1, 2, 3, 1, 1, 2, 1, 1, 4, 1, 1, 1, 1, 1, 2, 2, 1, 1, 2, 3, 1, 2, 3, 5, 1, 1, 1, 2, 1, 1, 2, 6, 1, 1, 1, 4, 1, 1, 2, 2, 3, 1, 1, 1, 1, 1, 1, 4, 7, 1, 1, 1, 2, 2, 1, 1, 1, 8, 1, 1, 1, 2, 3, 1, 1, 1, 2, 4, 1, 1, 2, 3, 5, 1, 1, 2, 2, 9
Offset: 1
Examples
Triangle begins: {} 1 1 2 1 1 1 2 3 1 1 2 1 1 4 1 1 1 1 1 2 2 1 1 2 3 1 2 3 5 1 1 1 2 1 1 2 6 1 1 1 4 1 1 2 2 3 1 1 1 1 1 1 4 7 1 1 1 2 2 1 1 1 8 1 1 1 2 3 1 1 1 2 4 1 1 2 3 5 1 1 2 2 9 For example, row 65 is {1,1,1,2,2,3,6} because 65 = q(1)^3 q(2)^2 q(3) q(6).
Crossrefs
Programs
-
Mathematica
difac[n_]:=If[n==1,{},With[{i=PrimePi[FactorInteger[n][[1,1]]]},Sort[Prepend[difac[n*i/Prime[i]],i]]]]; Table[difac[n],{n,30}]
Comments