A080327 Numbers k for which Lucas(k) and Fibonacci(k) are both prime.
4, 5, 7, 11, 13, 17, 47, 148091
Offset: 1
References
- Paulo Ribenboim, The Little Book of Bigger Primes, Springer-Verlag NY 2004. See p. 246.
Links
- David Broadhurst, Prime Curio: 10660...49391 (61899-digits)
- Gerry Myerson, Western Number Theory Problems, 17 & 19 Dec 2007.
Crossrefs
Programs
-
Mathematica
Select[Range[0, 100], PrimeQ[Fibonacci[#]] && PrimeQ[LucasL[#]] & ] (* Robert Price, May 27 2019 *)
-
PARI
is(n)=isprime(n) && ispseudoprime(fibonacci(n)) && ispseudoprime(fibonacci(n-1)+fibonacci(n+1)) \\ Charles R Greathouse IV, May 21 2014
Comments