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.

Previous Showing 11-13 of 13 results.

A206096 Fibonacci numbers with 4 distinct prime divisors, each of multiplicity 1.

Original entry on oeis.org

6765, 196418, 317811, 2178309, 32951280099, 139583862445, 1304969544928657, 5527939700884757, 259695496911122585, 679891637638612258, 12200160415121876738, 83621143489848422977, 483162952612010163284885, 22698374052006863956975682
Offset: 1

Views

Author

Keywords

Comments

Intersection of A000045 and A046386. - Michel Marcus, Sep 11 2014

Crossrefs

Programs

  • Maple
    filter:= proc(t)
    local F;
    F:= ifactors(t)[2];
    map(f -> f[2],F) = [1,1,1,1];
    end proc:
    select(filter, [seq(combinat:-fibonacci(n),n=1..200)]); # Robert Israel, Sep 07 2014
  • Mathematica
    Select[Fibonacci[Range[200]],Last/@FactorInteger[#]=={1,1,1,1}&]
  • PARI
    Vec(select(k -> omega(k)==4 && bigomega(k)==4, vector(100, i, fibonacci(i)))) \\ Edward Jiang, Sep 11 2014

A137574 Fibonacci numbers and their distinct prime divisors having the same number of decimal digits.

Original entry on oeis.org

2, 3, 5, 8, 13, 21, 89, 233, 1597, 17711, 28657, 46368, 75025, 121393, 514229, 1346269, 165580141, 433494437, 2971215073, 53316291173, 139583862445, 2504730781961, 308061521170129, 806515533049393, 14472334024676221, 99194853094755497, 19740274219868223167
Offset: 1

Views

Author

Parthasarathy Nambi, Apr 25 2008

Keywords

Comments

The Fibonacci primes are part of this sequence.
Fibonacci numbers which are semiprimes are also part of the sequence.

Examples

			The Fibonacci number 53316291173 and its prime divisors 953 and 55945741 have exactly the same number of decimal digits.
		

Crossrefs

Programs

  • Mathematica
    Select[Fibonacci[Range[3,100]],IntegerLength[#]==Total[IntegerLength/@First/@FactorInteger[#]]&] (* James C. McMahon, May 30 2025 *)

Extensions

a(21)-a(27) from James C. McMahon, May 30 2025

A206097 Fibonacci numbers F that are squarefree semiprimes such that F+2 or F-2 is also a squarefree semiprime.

Original entry on oeis.org

55, 4181, 17711, 121393, 5702887
Offset: 1

Views

Author

Keywords

Comments

a(6) > Fibonacci(1500), if it exists. - Amiram Eldar, Aug 01 2024

Examples

			55 = Fibonacci(10) is a term because 55 = 5 * 11 and 55 + 2 = 57 = 3 * 19 are both squarefree semiprimes.
4181 = Fibonacci(19) is a term because 4181 = 37 * 113 and 4181 + 2 = 4183 = 47 * 89 are both squarefree semiprimes.
		

Crossrefs

Subsequence of A000045, A006881 and A053409.
Cf. A072381.

Programs

  • Mathematica
    Select[Fibonacci[Range[300]], Last/@FactorInteger[#]=={1,1} && (Last/@FactorInteger[#+2]=={1,1} || Last/@FactorInteger[#-2]=={1,1})&]

Extensions

Name corrected by Amiram Eldar, Aug 01 2024
Previous Showing 11-13 of 13 results.