[go: up one dir, main page]

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

A214967
a(n) is the least m > 0 such that n-m divides Fibonacci(n)-m.
2
1, 2, 3, 1, 4, 1, 7, 4, 1, 5, 1, 2, 3, 8, 15, 7, 16, 17, 1, 2, 3, 21, 12, 1, 25, 14, 27, 4, 1, 2, 1, 2, 3, 1, 18, 17, 35, 38, 27, 6, 1, 2, 3, 20, 45, 1, 24, 1, 15, 44, 3, 5, 8, 13, 49, 2, 55, 53, 1, 2, 1, 2, 3, 15, 64, 24, 67, 44, 47, 69, 1, 1, 3, 38, 75, 5, 76, 10, 1, 2, 3, 30
OFFSET
2,2
LINKS
EXAMPLE
Write x#y if x|y is false; then 8#33, 7#32, 6#31, 5|30 so a(9) = 4.
MATHEMATICA
Table[m = 1; While[! Divisible[Fibonacci[n]-m, n-m], m++]; m, {n, 2, 100}]
CROSSREFS
Cf. A214968.
Sequence in context: A065516 A375511 A280699 * A195164 A223025 A087088
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jul 31 2012
STATUS
approved