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!)
A076647 Numbers n such that phi(n) + phi(n+1) = sigma(n)/2. 1
56, 456, 476, 828, 846, 1196, 2060, 2780, 4484, 7530, 9174, 11420, 11475, 11865, 13454, 22154, 34916, 35385, 52185, 67308, 105798, 140895, 168872, 190840, 219852, 241892, 244074, 267225, 303834, 317564, 330484, 335440, 460292, 580970, 658515 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
phi(56) + phi(57) = 24 + 36 = 60 = 1/2 sigma(56), so 56 is a term of the sequence.
MAPLE
with(numtheory): p:=proc(n) if phi(n)+phi(n+1)=sigma(n)/2 then n else fi end: seq(p(n), n=1..2500000); # Emeric Deutsch, Sep 02 2005
MATHEMATICA
Select[Range[10^5], EulerPhi[ # ] + EulerPhi[ # + 1] == (1/2)DivisorSigma[1, # ] &]
PROG
(PARI) isok(n) = eulerphi(n) + eulerphi(n+1) == sigma(n)/2; \\ Michel Marcus, Aug 15 2019
CROSSREFS
Cf. A092404.
Sequence in context: A205313 A287702 A008447 * A187159 A220048 A257707
KEYWORD
nonn
AUTHOR
Joseph L. Pe, Oct 23 2002
EXTENSIONS
More terms from Emeric Deutsch, Sep 02 2005
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 April 25 08:20 EDT 2024. Contains 371964 sequences. (Running on oeis4.)