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!)
A094412 Numbers k that divide Fibonacci(k+1) but do not divide Fibonacci(k) + 1. 3
323, 377, 2834, 3827, 6479, 11663, 18407, 19043, 20999, 23407, 25877, 27323, 34943, 35207, 39203, 44099, 47519, 50183, 51983, 53663, 60377, 65471, 78089, 79547, 81719, 82983, 84279, 84419, 86063, 90287, 94667, 104663, 109871, 121103, 121393 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
Select[Range[50000], ! Mod[Fibonacci[ # ] + 1, # ] == 0 && Mod[Fibonacci[ # + 1], # ] == 0 &]
Select[Range[122000], Divisible[{Fibonacci[#+1], Fibonacci[#]+1}, #]=={True, False}&] (* Harvey P. Dale, Apr 16 2019 *)
PROG
(PARI) fibmod(n, m)=(Mod([0, 1; 1, 1], m)^n*[0; 1])[1, 1]
is(n)=fibmod(n+1, n)==0 && fibmod(n, n)!=-1 \\ Charles R Greathouse IV, Nov 04 2016
CROSSREFS
Sequence in context: A217120 A081264 A069107 * A182504 A177745 A065822
KEYWORD
nonn
AUTHOR
Eric Rowland, May 01 2004
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 May 26 05:37 EDT 2024. Contains 372807 sequences. (Running on oeis4.)