A183104 a(n) = product of divisors of n that are perfect powers.
1, 1, 1, 4, 1, 1, 1, 32, 9, 1, 1, 4, 1, 1, 1, 512, 1, 9, 1, 4, 1, 1, 1, 32, 25, 1, 243, 4, 1, 1, 1, 16384, 1, 1, 1, 1296, 1, 1, 1, 32, 1, 1, 1, 4, 9, 1, 1, 512, 49, 25, 1, 4, 1, 243, 1, 32, 1, 1, 1, 4, 1, 1, 9, 1048576, 1, 1, 1, 4, 1, 1, 1, 10368
Offset: 1
Keywords
Examples
For n = 12, set of such divisors is {1, 4}; a(12) = 1*4 = 4.
Links
- Antti Karttunen, Table of n, a(n) for n = 1..16385
Programs
-
Maple
isA001597 := proc(n) local e ; e := seq(op(2,p),p=ifactors(n)[2]) ; return ( igcd(e) >=2 ) ; end proc: A183104 := proc(n) local a,d; a := 1 ; for d in numtheory[divisors](n) do if isA001597(d) then a := a*d; end if; end do; a ; end proc: seq(A183104(n),n=1..72) ; # R. J. Mathar, Jun 07 2011
-
Mathematica
perfPQ[n_]:=GCD@@FactorInteger[n][[All,2]]>1; Table[Times@@Select[Divisors[n],perfPQ[#]&],{n,120}] (* Harvey P. Dale, Mar 07 2024 *)
-
PARI
A183104(n) = { my(m=1); fordiv(n, d, if(ispower(d), m *= d)); m; }; \\ Antti Karttunen, Oct 07 2017
Comments