login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A290864
Numbers k such that the k-th Fibonacci polynomial evaluated at k is prime.
1
2, 5, 71, 8419
OFFSET
1,1
COMMENTS
Numbers k such that A084844(k) = A117715(k,k) is prime.
a(5) > 9200. - Giovanni Resta, Aug 13 2017
Except for a(1), all terms == 1 or 5 (mod 6). - Robert Israel, Aug 13 2017
LINKS
Eric Weisstein's World of Mathematics, Fibonacci Polynomial
EXAMPLE
5 is in the sequence because A117715(5,5) = 701 is prime.
MAPLE
select(t -> isprime(combinat:-fibonacci(t, t)), [2, seq(seq(6*i+j, j=[1, 5]), i=0..100)]); # Robert Israel, Aug 13 2017
MATHEMATICA
Select[Range[100], PrimeQ@ Fibonacci[#, #] ]&] (* Giovanni Resta, Aug 13 2017 *)
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Bobby Jacobs, Aug 12 2017
EXTENSIONS
a(4) from Giovanni Resta, Aug 13 2017
STATUS
approved