The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A023162 Numbers k such that F(k) == -1 (mod k), where F(n) = A000045(n) is the n-th Fibonacci number. 5
1, 2, 3, 4, 7, 13, 14, 17, 23, 26, 34, 37, 43, 46, 47, 53, 67, 73, 74, 83, 86, 94, 97, 103, 106, 107, 113, 127, 134, 137, 146, 157, 163, 166, 167, 173, 193, 194, 197, 206, 214, 223, 226, 227, 233, 254, 257, 263, 274, 277, 283, 293, 307, 313, 314, 317, 326, 334 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
If k is prime then k is in the sequence if and only if k == 2 or 3 (mod 5).
LINKS
FORMULA
a(n) seems to be asymptotic to c*n*log(n) where c = 1.5... - Benoit Cloitre, Jan 10 2003
MATHEMATICA
Module[{nn = 500, fib}, fib = Thread[{Range[nn], Fibonacci[Range[nn]]}]; Transpose[Select[fib, Mod[Last[#], First[#]] == First[#] - 1 &]][[1]]] (* Harvey P. Dale, May 21 2014 *)
Select[Range[500], Mod[Fibonacci[#], #] == # - 1 &] (* Alonso del Arte, Nov 20 2018 *)
PROG
(PARI) isok(k) = Mod(fibonacci(k), k) == -1; \\ Michel Marcus, Nov 21 2018
CROSSREFS
Sequence in context: A207573 A152605 A285222 * A022437 A057983 A200088
KEYWORD
nonn
AUTHOR
EXTENSIONS
Name clarified by Alonso del Arte and Michel Marcus, Nov 20 2018
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 June 2 20:59 EDT 2024. Contains 373049 sequences. (Running on oeis4.)