A328520 GCD of terms in A002182 that have n prime factors counted with multiplicity.
1, 2, 2, 12, 12, 12, 60, 120, 2520, 2520, 2520, 55440, 55440, 720720, 720720, 12252240, 36756720, 698377680, 3491888400, 80313433200, 160626866400, 160626866400, 9316358251200, 288807105787200, 2021649740510400, 74801040398884800, 74801040398884800, 3066842656354276800, 131874234223233902400
Offset: 0
Keywords
Examples
The terms in A002182 with n = 4 prime divisors counted with multiplicity are 24, 36 and 60. Their GCD is 12 hence a(4) = 12. Furthermore, If for every term t > 1 in A002182 there exists a term in A002182 of the form t/p for some prime p|t then we have that each term with more than 4 prime divisors counted with multiplicity is a multiple of at least one of 24, 36 or 60 hence is divisible by 12.
Programs
-
Mathematica
(* First, load the function f at A025487, then: *) Block[{s = Union@ Flatten@ f@ 20, t}, t = DivisorSigma[0, s]; s = Map[s[[FirstPosition[t, #][[1]] ]] &, Union@ FoldList[Max, t]]; t = PrimeOmega[s]; Drop[Array[GCD @@ s[[Position[t, #][[All, 1]] ]] &, Max@ t + 1, 0], -3] ] (* Michael De Vlieger, Jan 12 2020 *)
Comments