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!)
A373057 Numbers k such that iphi(k) divides k, where iphi is the infinitary Euler phi function (A064380). 1
2, 6, 8, 10, 60, 70, 120, 128, 136, 9822, 18632, 32768, 32896, 36720, 69726, 73662, 73686, 73734, 85962, 86046, 87114, 87198, 87222, 87258, 87294, 87306, 87342, 87366, 87546, 87558, 88014, 88278, 88302, 88338, 88386, 127326, 128046, 128082, 128382, 128406, 128598 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers k such that the number of numbers less than k that are infinitarily relatively prime to k is a divisor of k.
LINKS
EXAMPLE
2 is a term since ipghi(2) = 1 divides 2.
6 is a term since ipghi(6) = 6 divides 6.
60 is a term since ipghi(60) = 30 divides 60.
MATHEMATICA
infCoprimeQ[n1_, n2_] := Module[{g = GCD[n1, n2]}, If[g == 1, True, AllTrue[ FactorInteger[g][[;; , 1]], BitAnd @@ IntegerExponent[{n1, n2}, #] == 0 &]]]; q[n_] := Divisible[n, Sum[Boole[infCoprimeQ[j, n]], {j, 1, n-1}]]; Select[Range[2, 200], q]
PROG
(PARI) isinfcoprime(n1, n2) = {my(g = gcd(n1, n2), p, e1, e2); if(g == 1, return(1)); p = factor(g)[, 1]; for(i=1, #p, e1 = valuation(n1, p[i]); e2 = valuation(n2, p[i]); if(bitand(e1, e2) > 0, return(0))); 1; }
is(n) = if(n < 2, 0, !(n % sum(j = 1, n-1, isinfcoprime(j, n))));
CROSSREFS
Cf. A064380.
Similar sequences: A007694, A097296, A319481, A335327.
Sequence in context: A299381 A247984 A108417 * A185078 A214402 A166064
KEYWORD
nonn
AUTHOR
Amiram Eldar, May 21 2024
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 June 22 23:46 EDT 2024. Contains 373629 sequences. (Running on oeis4.)