A094401 Composite n such that n divides both Fibonacci(n-1) and Fibonacci(n) - 1.
2737, 4181, 6721, 13201, 15251, 34561, 51841, 64079, 64681, 67861, 68251, 90061, 96049, 97921, 118441, 146611, 163081, 179697, 186961, 194833, 197209, 219781, 252601, 254321, 257761, 268801, 272611, 283361, 302101, 303101, 327313, 330929
Offset: 1
Keywords
Links
- Giovanni Resta, Table of n, a(n) for n = 1..1000 (first 200 terms from T. D. Noe)
- Eric Weisstein, MathWorld: Fibonacci Q-Matrix.
Programs
-
Mathematica
Select[Range[2, 50000], ! PrimeQ[ # ] && Mod[Fibonacci[ # - 1], # ] == 0 && Mod[Lucas[ # ] - 1, # ] == 0 &]
Extensions
More terms from Ryan Propper, Sep 24 2005
Comments