login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A067701
Numbers n such that phi(n-1) + phi(n+1) = phi(2n).
4
5, 7, 25, 77, 217, 305, 3665, 4645, 5065, 8815, 12205, 12545, 19877, 20435, 24235, 29545, 37735, 47995, 60115, 72085, 73025, 77045, 87475, 121145, 126055, 129245, 149755, 190267, 234635, 247855, 273295, 275723, 419365, 531235, 553475, 621725, 774485, 840085
OFFSET
1,1
LINKS
EXAMPLE
phi(25-1) + phi(25+1) = 8+12 = phi(2*25), so 25 is in the sequence.
MATHEMATICA
Select[Range[10^5], EulerPhi[ # - 1] + EulerPhi[ # + 1] == EulerPhi[2# ] &]
Flatten[Position[Partition[EulerPhi[Range[850000]], 3, 1], _?(#[[1]]+#[[3]]== #[[2]]&), 1, Heads->False]]+1 (* Harvey P. Dale, Mar 26 2023 *)
CROSSREFS
Sequence in context: A227922 A179782 A013626 * A059240 A324363 A166100
KEYWORD
nonn
AUTHOR
Joseph L. Pe, Feb 05 2002
EXTENSIONS
Edited by Dean Hickerson, Feb 12 2002
STATUS
approved