OFFSET
1,1
COMMENTS
These even Fibonacci pseudoprimes (FPPs) were found by Kenny Richardson (kenyai(AT)yahoo.com). See A081264 for odd FPPs and references. Be aware that some authors use the term "Fibonacci pseudoprime" for pseudoprimes in Lucas sequences. For example, see A005845 for Lucas V(1,-1) pseudoprimes.
a(69) > 2.6 * 10^11. - Dana Jacobsen, May 25 2015
LINKS
Dana Jacobsen, Table of n, a(n) for n = 1..68
Dorin Andrica and Ovidiu Bagdasar, Recurrent Sequences: Key Results, Applications, and Problems, Springer (2020), p. 88.
Dorin Andrica and Ovidiu Bagdasar, On Generalized Lucas Pseudoprimality of Level k, Mathematics (2021) Vol. 9, 838.
PROG
(Perl) use ntheory ":all"; for (3..1e10) { my $n = $_<<1; $e = (0, -1, 1, 1, -1)[$n%5]; next unless $e; say $n unless (lucas_sequence($n, 1, -1, $n+$e))[0]; } # Dana Jacobsen, May 25 2015
CROSSREFS
KEYWORD
nice,nonn
AUTHOR
T. D. Noe, Jun 09 2008
EXTENSIONS
a(19) from Giovanni Resta, Jul 20 2013
a(20)-a(21) from Dana Jacobsen, May 25 2015
STATUS
approved