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!)
A298759 Numbers k such that bphi(k) = k/2, where bphi is the bi-unitary analog of Euler's totient function (A116550). 0
2, 6, 30, 42, 1722, 1806, 19977474 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
With Euler's totient function, phi(k) = k/2 only for powers of 2 (A000079, except for 1). With the unitary totient function (A047994) the corresponding sequence is A030163.
a(8) > 2*10^9, if it exists. - Amiram Eldar, Jul 16 2022
LINKS
EXAMPLE
42 is in the sequence since bphi(42) = 21 = 42/2.
MATHEMATICA
bphi[1] = 1; bphi[n_] := With[{pp = Power @@@ FactorInteger[n]}, Count[Range[n], m_ /; Intersection[pp, Power @@@ FactorInteger[m]] == {}]]; aQ[n_] := bphi[n] == n/2; Select[Range[10000], aQ]
PROG
(PARI) udivs(n) = {my(d = divisors(n)); select(x->(gcd(x, n/x)==1), d); }
gcud(n, m) = vecmax(setintersect(udivs(n), udivs(m)));
bphi(n) = if (n==1, 1, sum(k=1, n-1, gcud(n, k) == 1));
isok(n) = bphi(n) == n/2; \\ Michel Marcus, Jan 26 2018
CROSSREFS
Sequence in context: A100194 A229882 A325986 * A360680 A369685 A127517
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, Jan 26 2018
EXTENSIONS
a(7) from Amiram Eldar, Jul 16 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 September 4 16:58 EDT 2024. Contains 375685 sequences. (Running on oeis4.)