OFFSET
0,4
LINKS
Amiram Eldar, Table of n, a(n) for n = 0..1000 (using Blair Kelly's data)
Blair Kelly, Fibonacci and Lucas Factorizations
Eric Weisstein's World of Mathematics, Lucas Number
MATHEMATICA
Lucas[n_] := Fibonacci[n+1] + Fibonacci[n-1]; Join[{0}, Table[Plus@@(Transpose[FactorInteger[Lucas[n]]][[2]]), {n, 2, 150}]]
PROG
(PARI) a(n)=bigomega(fibonacci(n-1)+fibonacci(n+1)) \\ Charles R Greathouse IV, Sep 14 2015
CROSSREFS
KEYWORD
hard,nonn
AUTHOR
T. D. Noe, Jul 24 2003
EXTENSIONS
a(0) added by Amiram Eldar, Sep 01 2019
STATUS
approved