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
5, 10, 7, 10, 11, 12, 35, 14, 13, 22, 55, 22, 19, 70, 19, 22, 85, 26, 77, 26, 27, 110, 55, 34, 55, 38, 31, 34, 119, 38, 65, 44, 41, 52, 65, 46, 185, 154, 43, 46, 143, 54, 215, 70, 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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
From Robert Israel, Jun 08 2018: (Start)
The first n for which a(n)-n is odd is 239.
If n+2 and n+4 are twin primes (i.e. n+2 is in A001359), then a(n) <= n+4.
Conjecture: a(n) >= n+4 for all n. (End)
LINKS
EXAMPLE
k = 10 is the smallest solution of phi(k-2)+phi(k+2)=phi(2k). So a(2) = 10.
MAPLE
f:= proc(n) local k;
for k from n+1 do if numtheory:-phi(k-n)+numtheory:-phi(k+n)=numtheory:-phi(2*k) then return k fi od:
end proc:
map(f, [$1..100]); # Robert Israel, Jun 08 2018
MATHEMATICA
f[k_] := Module[{i = k + 1}, While[EulerPhi[i - k] + EulerPhi[i + k] != EulerPhi[2 i], i++ ]; i]; Table[f[n], {n, 1, 40}]
CROSSREFS
Sequence in context: A326724 A103697 A185341 * A245942 A280943 A316707
KEYWORD
nonn
AUTHOR
Joseph L. Pe, Feb 11 2002
EXTENSIONS
More terms from Robert Israel, Jun 08 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 July 25 15:49 EDT 2024. Contains 374612 sequences. (Running on oeis4.)