OFFSET
1,1
COMMENTS
Sequence resembles A090820, although they are not identical.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Z. H. Sun and Z. W. Sun, Fibonacci numbers and Fermat's last theorem, Acta Arithmetica 60(4) (1992), 371-388.
MATHEMATICA
Select[Range[2, 5000], ! PrimeQ[#] && Mod[Fibonacci[# - JacobiSymbol[#, 5]], #] == 0 &] (* Jean-François Alcover, Apr 24 2014 *)
PROG
(PARI) forcomposite(n=2, 1e4, if(Mod(fibonacci(n-kronecker(n, 5)), n)==0, print1(n, ", ")))
CROSSREFS
KEYWORD
nonn
AUTHOR
Felix Fröhlich, Apr 24 2014
STATUS
approved