login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A086599 Number of prime factors in Lucas(n), counting multiplicity. 3

%I #15 Sep 01 2019 11:16:08

%S 1,0,1,2,1,1,3,1,1,3,2,1,3,1,2,4,1,1,5,1,2,4,3,2,3,3,2,4,3,2,5,1,2,4,

%T 3,4,4,1,2,5,3,1,6,2,4,7,3,1,4,2,4,5,3,1,7,5,2,5,3,3,6,1,2,7,2,5,6,2,

%U 2,6,4,1,4,2,3,8,2,4,5,1,2,6,4,2,7,4,2,6,3,2,8,3,3,5,4,5,4,2,4,8,4,3,7,3,4,10

%N Number of prime factors in Lucas(n), counting multiplicity.

%H Amiram Eldar, <a href="/A086599/b086599.txt">Table of n, a(n) for n = 0..1000</a> (using Blair Kelly's data)

%H Blair Kelly, <a href="http://mersennus.net/fibonacci//">Fibonacci and Lucas Factorizations</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/LucasNumber.html">Lucas Number</a>

%t Lucas[n_] := Fibonacci[n+1] + Fibonacci[n-1]; Join[{0}, Table[Plus@@(Transpose[FactorInteger[Lucas[n]]][[2]]), {n, 2, 150}]]

%o (PARI) a(n)=bigomega(fibonacci(n-1)+fibonacci(n+1)) \\ _Charles R Greathouse IV_, Sep 14 2015

%Y Cf. A000204 (Lucas numbers), A086598 (number of distinct prime factors), A086600 (number of primitive prime factors).

%K hard,nonn

%O 0,4

%A _T. D. Noe_, Jul 24 2003

%E a(0) added by _Amiram Eldar_, Sep 01 2019

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)