A136341 Fibonacci primes or semiprimes F(k) such that F(k+1) is again prime or semiprime.
2, 3, 13, 21, 34, 55, 233, 17711
Offset: 1
Examples
(55,89) is an almost twin Fibonacci prime pair because 55=5*11 is a 2-almost prime and 89 is prime.
Crossrefs
Programs
-
Mathematica
Fibonacci[#]&/@(SequencePosition[Table[If[PrimeOmega[f]<=2,1,0],{f,Fibonacci[ Range[150]]}],{1,1}][[All,1]]) (* Harvey P. Dale, Mar 29 2022 *)
-
PARI
ATfib(n) = for(x=3,n,f1=fibonacci(x);f2=fibonacci(x+1);if(bigomega (f1)<=2&&bigomega(f2)<=2, print1(f1",")))
-
PARI
for( k=3,10^5, bigomega( fibonacci( k++ ))>2 & next; bigomega( fibonacci( k-1 ))>2 & next; print1(fibonacci(k--)",")) \\ M. F. Hasler, May 01 2008
Formula
Let F(n) = n-th Fibonacci number and define a 2-almost prime number to be a number with only 2 prime divisors with multiplicity.
Extensions
Edited by M. F. Hasler, May 01 2008
Comments