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”).

A067798
Numbers n such that phi(n)+phi(n+1)=n+1.
1
1, 2, 3, 5, 9, 15, 21, 35, 39, 45, 75, 99, 135, 231, 255, 363, 483, 765, 855, 1295, 1599, 2015, 2115, 4335, 6783, 9999, 14399, 16095, 16599, 18495, 30495, 53823, 62799, 63455, 65535, 77615, 155319, 186999, 196095, 327675, 589815, 686735, 722015
OFFSET
1,2
LINKS
FORMULA
{n: A000010(n) = A051953(n+1)}. - Omar E. Pol, May 15 2016
MATHEMATICA
Select[Range[10^5], Plus @@ EulerPhi[{#, # + 1}] == # + 1 &] (* Giovanni Resta, May 15 2016 *)
PROG
(PARI) isok(n) = eulerphi(n)+eulerphi(n+1) == n+1; \\ Michel Marcus, May 15 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Feb 07 2002
EXTENSIONS
More terms from Dean Hickerson, Feb 16 2002
STATUS
approved