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!)
A058665 a(n) = gcd(n+1, n-phi(n)). 1
2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 5, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 7, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(n) = 1 for most n. True for all primes and other integers.
LINKS
FORMULA
a(n) = gcd(n+1, cototient(n)) = gcd(n+1, A051953(n)).
EXAMPLE
n = 247 = 13*19, n+1 = 248 = 8*31, phi(247) = 12*18 = 216, cototient(247) = 247-216 = 31, so a(247) = gcd(248,31) = 31.
MATHEMATICA
Table[GCD[n+1, n-EulerPhi[n]], {n, 0, 110}] (* Harvey P. Dale, Dec 24 2012 *)
PROG
(PARI) A058665(n) = gcd(n+1, n-eulerphi(n)); \\ Antti Karttunen, Jul 28 2017
(Python)
from sympy import gcd, totient
def a(n): return gcd(n + 1, n - totient(n))
print([a(n) for n in range(1, 51)]) # Indranil Ghosh, Jul 29 2017
CROSSREFS
Sequence in context: A318829 A113515 A103754 * A327103 A290105 A191898
KEYWORD
nonn
AUTHOR
Labos Elemer, Dec 28 2000
EXTENSIONS
Offset corrected by Antti Karttunen, Jul 28 2017
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 19 17:51 EDT 2024. Contains 371797 sequences. (Running on oeis4.)