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

A094413
Odd composites k that divide Fibonacci(k) + 1 but not Fibonacci(k+1).
2
17261, 120581, 163059, 300847, 1842581, 3489641, 3792541, 5573499, 21159271, 36561959, 40779991, 63055651, 67306519, 69503037, 72125899, 129487163, 136021717, 174008141, 175094767, 247600477, 418623283, 529281911, 814454381, 902315699
OFFSET
1,1
LINKS
David Radcliffe, Table of n, a(n) for n = 1..33 (first 24 terms from G. Resta)
PROG
(PARI) isok(n) = (n % 2) && ! ((fibonacci(n) + 1) % n) && (fibonacci(n+1) % n); \\ Michel Marcus, Aug 27 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Eric Rowland, May 07 2004
EXTENSIONS
4 more terms from Ryan Propper, Aug 03 2005
a(9)-a(24) from Giovanni Resta, Jul 20 2013
STATUS
approved