OFFSET
1,1
COMMENTS
Corresponding primes in A057862 are {2, 11, 2, 37, 173, 1663, 18257, 447876604131364627, 55437674149894825801, ...}.
MAPLE
select(n->isprime(2 &^n mod combinat:-fibonacci(n)), [$1..3000]); # Muniru A Asiru, Jul 17 2018
MATHEMATICA
Do[f=PowerMod[2, n, Fibonacci[n]]; If[PrimeQ[f], Print[{n, f}]], {n, 1, 503}]
PROG
(PARI) is(n)=ispseudoprime(2^n%fibonacci(n)) \\ Charles R Greathouse IV, Jun 19 2017
(PFGW)
ABC2 2^$a % F($a)
a: from 5 to 1000000
// Charles R Greathouse IV, Jun 19 2017
CROSSREFS
KEYWORD
hard,more,nonn
AUTHOR
Alexander Adamchuk, Feb 19 2007
EXTENSIONS
a(14)-a(19) from Stefan Steinerberger, Jun 10 2007
More terms from Ryan Propper, Jan 11 2008
a(25)-a(26) from Donovan Johnson, Sep 03 2008
a(27) from Charles R Greathouse IV, Jun 20 2017
a(28)-a(29) from Charles R Greathouse IV, Jun 30 2017
STATUS
approved