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!)
A352876 Numbers k such that the sum of k, the divisors of k, and the numbers < k that are coprime to k, is a perfect power. 0
7, 9, 12, 36, 700, 752, 4081, 18745, 167940, 1095876, 3393680, 5621764, 9950500, 30108516 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers k such that k + A000203(k) + A023896(k) is in A001597.
LINKS
EXAMPLE
a(3) = 12 is a term because 12 + A000203(12) + A023896(12) = 12 + 24 + 28 = 64 = 2^6 is a perfect power.
MAPLE
f:= n -> n + n*numtheory:-phi(n)/2 + numtheory:-sigma(n):
g:= proc(n) local t;
igcd(t[2], t=ifactors(n)[2]) > 1
end proc:
select(t -> g(f(t)), [$2..2*10^6]);
MATHEMATICA
ppQ[n_] := GCD @@ FactorInteger[n][[;; , 2]] > 1; Select[Range[10^7], ppQ[# + DivisorSigma[1, #] + #*EulerPhi[#]/2] &] (* Amiram Eldar, Apr 07 2022 *)
CROSSREFS
Sequence in context: A121056 A174189 A112529 * A161892 A056528 A055565
KEYWORD
nonn,more
AUTHOR
J. M. Bergot and Robert Israel, Apr 06 2022
STATUS
approved

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 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)