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!)
A319800 Numbers k such that Sum_{d|k} nphi(d) = k where the sum is over nonunitary divisors of k and nphi(k) is the nonunitary totient function (A254503). 0
3960, 5220, 1873080, 6733440, 8447040, 18685336320, 255306083760, 341863562880, 357274165248, 765899971200, 1018887932160 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Ligh and Wall found the first 5 terms and also the terms 18685336320, 341863562880, 357174165248, 1018887932160, 20993596382889043200. They showed that each term has a powerful part with at least 2 distinct prime factors, and conjectured that it is only even.
REFERENCES
Jozsef Sandor and Borislav Crstici, Handbook of Number Theory II, Kluwer Academic Publishers, 2004, Chapter 3, p. 287.
LINKS
Steve Ligh and Charles R. Wall, Functions of Nonunitary Divisors, Fibonacci Quarterly, Vol. 25 (1987), pp. 333-338.
MATHEMATICA
rad[n_] := Times @@ First /@ FactorInteger[n]; powerFree[n_] := Denominator[ n/rad[n]^2 ]; powerPart[n_] := n/powerFree[n]; nuphi[n_] := powerFree[ n ] * EulerPhi[powerPart[n]]; ndiv[n_] := Block[{d = Divisors[n]}, Select[d, GCD[#, n/#] > 1 &]]; a[n_] := Module[{d = ndiv[n]}, Total@Map[nuphi, d]]; s={}; Do[ If[a[n] == n, AppendTo[s, n]], {n, 1, 10^8}]; s
PROG
(PARI) nphi(n) = sumdiv(n, d, if(gcd(n/d, d) == 1, moebius(d)^2 * eulerphi(n/d)));
isok(n) = sumdiv(n, d, if(gcd(n/d, d) != 1, nphi(d))) == n; \\ Michel Marcus, Sep 28 2018
CROSSREFS
Sequence in context: A230707 A230617 A250531 * A373391 A034599 A007038
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, Sep 28 2018
EXTENSIONS
a(6)-a(9) from Giovanni Resta, Sep 29 2018
a(10)-a(11) from Giovanni Resta, Oct 11 2018
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 August 17 19:02 EDT 2024. Contains 375227 sequences. (Running on oeis4.)