OFFSET
1,1
COMMENTS
If p is an odd prime except 5, then F(p) == 5^((p-1)/2) == +-1 (mod p).
All terms found satisfy the congruence F(k) == 5^((k-1)/2) == 1 (mod k). They are a proper subset of A094394.
Are there odd composites m such that F(m) == 5^((m-1)/2) == -1 (mod m)? They are a proper subset (maybe empty) of A094395 (they are not in the database, below 4*10^9).
MATHEMATICA
Select[Range[1, 10^6, 2], CompositeQ[#] && MemberQ[{1, # - 1}, PowerMod[5, (# - 1)/2, #]] && Divisible[5^((# - 1)/2) - Fibonacci[#], #] &]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar and Thomas Ordowski, Jun 26 2021
STATUS
approved