cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A136341 Fibonacci primes or semiprimes F(k) such that F(k+1) is again prime or semiprime.

Original entry on oeis.org

2, 3, 13, 21, 34, 55, 233, 17711
Offset: 1

Views

Author

Cino Hilliard, Mar 28 2008

Keywords

Comments

By definition, the smaller number in a pair of two consecutive Fibonacci numbers in A061305. a(9), if it exists, is >= A000045(230), so it has at least 48 digits. [R. J. Mathar, Feb 06 2010]
A search for consecutive numbers in the union of A072381 and A001605 shows that a(9) must be larger than A000045(990), a number with 207 digits, if it exists. [R. J. Mathar, Jun 02 2010]

Examples

			(55,89) is an almost twin Fibonacci prime pair because 55=5*11 is a 2-almost prime and 89 is prime.
		

Crossrefs

Cf. A001358.
Cf. A053409, A005478. [R. J. Mathar, Jun 02 2010]

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