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!)
A067843 Least solution k>n of phi(k-n)+phi(k+n)=phi(2k). 1

%I #7 Jun 08 2018 20:31:43

%S 5,10,7,10,11,12,35,14,13,22,55,22,19,70,19,22,85,26,77,26,27,110,55,

%T 34,55,38,31,34,119,38,65,44,41,52,65,46,185,154,43,46,143,54,215,70,

%U 57,110,161,58,187,68,67,76,203,62,175,62,61,76,95,74,67,130,71,88,95,82,115,74,73,130,215

%N Least solution k>n of phi(k-n)+phi(k+n)=phi(2k).

%C From _Robert Israel_, Jun 08 2018: (Start)

%C The first n for which a(n)-n is odd is 239.

%C If n+2 and n+4 are twin primes (i.e. n+2 is in A001359), then a(n) <= n+4.

%C Conjecture: a(n) >= n+4 for all n. (End)

%H Robert Israel, <a href="/A067843/b067843.txt">Table of n, a(n) for n = 1..10000</a>

%e k = 10 is the smallest solution of phi(k-2)+phi(k+2)=phi(2k). So a(2) = 10.

%p f:= proc(n) local k;

%p for k from n+1 do if numtheory:-phi(k-n)+numtheory:-phi(k+n)=numtheory:-phi(2*k) then return k fi od:

%p end proc:

%p map(f, [$1..100]); # _Robert Israel_, Jun 08 2018

%t f[k_] := Module[{i = k + 1}, While[EulerPhi[i - k] + EulerPhi[i + k] != EulerPhi[2 i], i++ ]; i]; Table[f[n], {n, 1, 40}]

%Y Cf. A000010, A067701.

%K nonn

%O 1,1

%A _Joseph L. Pe_, Feb 11 2002

%E More terms from _Robert Israel_, Jun 08 2018

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 29 22:07 EDT 2024. Contains 375518 sequences. (Running on oeis4.)