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.

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