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

A214920
a(n) is the least m > 0 such that Fibonacci(n-m) divides Lucas(n+m).
2
1, 1, 2, 1, 3, 3, 6, 5, 8, 7, 9, 9, 12, 11, 14, 13, 15, 15, 18, 17, 20, 19, 21, 21, 24, 23, 26, 25, 27, 27, 30, 29, 32, 31, 33, 33, 36, 35, 38, 37, 39, 39, 42, 41, 44, 43, 45, 45, 48, 47, 50, 49, 51, 51, 54, 53, 56, 55, 57, 57, 60, 59, 62, 61, 63, 63, 66, 65, 68, 67
OFFSET
2,3
LINKS
EXAMPLE
Write x#y if x|y is false; then 21#123, 13#199, 8#322, 5#521, 3|843 so a(9) = 5.
MATHEMATICA
Table[m = 1; While[! Divisible[LucasL[n+m], Fibonacci[n-m]], m++]; m, {n, 2, 100}]
CROSSREFS
Cf. A214919.
Sequence in context: A343381 A336096 A227774 * A096373 A216961 A241379
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jul 30 2012
STATUS
approved