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!)
A073958 Fibonacci numbers for which the number of prime factors (with multiplicity) is a Fibonacci number. 1

%I #14 Nov 21 2013 12:47:51

%S 1,2,3,5,8,13,21,34,55,89,233,377,610,987,1597,2584,4181,10946,17711,

%T 28657,75025,121393,514229,1346269,3524578,5702887,9227465,24157817,

%U 39088169,63245986,165580141,433494437

%N Fibonacci numbers for which the number of prime factors (with multiplicity) is a Fibonacci number.

%C The prime Fibonacci numbers, A005478, are a subsequence.

%H Charles R Greathouse IV, <a href="/A073958/b073958.txt">Table of n, a(n) for n = 1..328</a>

%e Example: 8=2*2*2, the number of prime factors is equal to 3, a Fibonacci number.

%t With[{fibs=Fibonacci[Range[0,50]]},Rest[Select[fibs,MemberQ[fibs, PrimeOmega[#]]&]]] (* _Harvey P. Dale_, Oct 27 2011 *)

%o (PARI) isFibonacci(n)=my(k=n^2);k+=((k + 1) << 2);issquare(k) || (n > 0 && issquare(k-8))

%o select(n->isFibonacci(bigomega(n)), vector(99,i,fibonacci(i+1))) \\ _Charles R Greathouse IV_, Jun 17 2013

%Y Cf. A000045.

%K nice,nonn

%O 1,2

%A _Felice Russo_, Sep 03 2002

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 23 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)