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!)
A214060 Least m>0 such that gcd(2*n-1+m, n-m) > 1. 2
1, 2, 1, 4, 1, 6, 1, 8, 1, 10, 1, 2, 1, 14, 1, 16, 1, 18, 1, 20, 1, 2, 1, 24, 1, 4, 1, 28, 1, 30, 1, 2, 1, 34, 1, 36, 1, 38, 1, 5, 1, 2, 1, 44, 1, 46, 1, 4, 1, 50, 1, 2, 1, 5, 1, 56, 1, 58, 1, 60, 1, 2, 1, 64, 1, 66, 1, 5, 1, 4, 1, 2, 1, 6, 1, 76, 1, 78, 1, 80, 1, 2, 1, 84, 1, 86, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
gcd(23+1,12-1) = 1 and gcd(23+2,12-2) > 1, so that a(12) = 2.
MATHEMATICA
b[n_] := 2*n - 1; c[n_] := n;
Table[m = 1; While[GCD[b[n] + m, c[n] - m] == 1, m++]; m, {n, 1, 150}]
lmg[n_]:=Module[{m=1}, While[GCD[2n-1+m, n-m]<2, m++]; m]; Array[lmg, 90] (* Harvey P. Dale, Jan 14 2020 *)
CROSSREFS
Sequence in context: A083258 A083259 A342242 * A009531 A124625 A327512
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jul 24 2012
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 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)