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!)
A260626 a(n) = gcd(m, 2^m-1) where m is the n-th nonprime positive integer. 1
1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 9, 5, 7, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 9, 1, 1, 5, 21, 1, 1, 1, 3, 1, 1, 1, 1, 27, 1, 1, 1, 1, 15, 1, 7, 1, 1, 3, 1, 1, 1, 9, 1, 1, 1, 1, 3, 5, 1, 1, 21, 1, 1, 1, 1, 9, 1, 1, 1, 1, 1, 3, 1, 1, 25, 3, 1, 7, 1, 27, 11, 1, 1, 3, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
2^m - 1 is a nonprime number if m is a nonprime number.
LINKS
FORMULA
a(n) = gcd(A018252(n), 2^A018252(n)-1).
a(n) = A014491(A018252(n)). - Michel Marcus, Nov 01 2015
MAPLE
seq(`if`(isprime(m), NULL, igcd(m, 2^m-1)), m=1..150);
MATHEMATICA
GCDnonPrime[n_Integer]:=GCD[2^FixedPoint[n+PrimePi@#&, n+PrimePi@n]-1, FixedPoint[n+PrimePi@#&, n+PrimePi@n]]; Array[GCDnonPrime, 120]
GCD[#, 2^#-1]&/@Select[Range[200], !PrimeQ[#]&] (* Harvey P. Dale, Aug 25 2019 *)
PROG
(PARI) for(n=1, 1e3, if(!isprime(n), print1(gcd(n, 2^n-1)", "))) \\ Altug Alkan, Nov 01 2015
CROSSREFS
Sequence in context: A060901 A351545 A087612 * A155828 A226203 A327791
KEYWORD
nonn,easy
AUTHOR
Michel Lagneau, Oct 31 2015
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 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)