login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A183104 a(n) = product of divisors of n that are perfect powers. 4

%I #18 Mar 07 2024 12:01:00

%S 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,

%T 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,

%U 1,4,1,1,9,1048576,1,1,1,4,1,1,1,10368

%N a(n) = product of divisors of n that are perfect powers.

%C Sequence is not the same as A183102: a(72) = 10368, A183102(72) = 746496.

%C Not multiplicative, as a(4)*a(9) <> a(36). - _R. J. Mathar_, Jun 07 2011

%H Antti Karttunen, <a href="/A183104/b183104.txt">Table of n, a(n) for n = 1..16385</a>

%F a(n) = A007955(n) / A183105(n).

%F a(1) = 1, a(p) = 1, a(pq) = 1, a(pq...z) = 1, a(p^k) = p^((1/2*k*(k+1))-1), for p, q = primes, k = natural numbers, pq...z = product of k (k > 2) distinct primes p, q, ..., z.

%e For n = 12, set of such divisors is {1, 4}; a(12) = 1*4 = 4.

%p isA001597 := proc(n) local e ; e := seq(op(2,p),p=ifactors(n)[2]) ; return ( igcd(e) >=2 ) ; end proc:

%p 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:

%p seq(A183104(n),n=1..72) ; # _R. J. Mathar_, Jun 07 2011

%t perfPQ[n_]:=GCD@@FactorInteger[n][[All,2]]>1; Table[Times@@Select[Divisors[n],perfPQ[#]&],{n,120}] (* _Harvey P. Dale_, Mar 07 2024 *)

%o (PARI) A183104(n) = { my(m=1); fordiv(n, d, if(ispower(d), m *= d)); m; }; \\ _Antti Karttunen_, Oct 07 2017

%Y Cf. A001597, A007955, A091051, A183102, A183105.

%K nonn

%O 1,4

%A _Jaroslav Krizek_, Dec 25 2010

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)