A206096 Fibonacci numbers with 4 distinct prime divisors, each of multiplicity 1.
6765, 196418, 317811, 2178309, 32951280099, 139583862445, 1304969544928657, 5527939700884757, 259695496911122585, 679891637638612258, 12200160415121876738, 83621143489848422977, 483162952612010163284885, 22698374052006863956975682
Offset: 1
Keywords
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..36
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
Comments