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!)
A251608 Lexicographically earliest subsequence of the Fibonacci numbers (cf. A000045), such that gcd(a(n-2), a(n)) > 1 and gcd(a(n-1), a(n)) = 1. 2
2, 3, 8, 21, 34, 987, 2584, 6765, 10946, 75025, 196418, 9227465, 14930352, 7778742049, 20365011074, 225851433717, 365435296162, 10610209857723, 27777890035288, 72723460248141, 117669030460994, 3416454622906707, 8944394323791464, 23416728348467685 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
n | a(n) | pos in A000045 | pos in A098550
---+--------+----------------+----------------
1 | 2 | 3 | 2
2 | 3 | 4 | 3
3 | 8 | 6 | 6
4 | 21 | 8 | 17
5 | 34 | 9 | 35
6 | 987 | 16 | 776
7 | 2584 | 18 | 2755
8 | 6765 | 20 | 5707
9 | 10946 | 21 | 11652
10 | 75025 | 25 | 66539
PROG
(Haskell)
a251608 n = a251608_list !! (n-1)
a251608_list = 2 : 3 : f 2 3 (drop 5 a000045_list) where
f u v (w:ws) = if gcd u w > 1 && gcd v w == 1
then w : f v w ws else f u v ws
CROSSREFS
Sequence in context: A192151 A137652 A185381 * A288252 A122263 A132730
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Dec 05 2014
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.)