A090206 Nonprime Fibonacci numbers.
0, 1, 1, 8, 21, 34, 55, 144, 377, 610, 987, 2584, 4181, 6765, 10946, 17711, 46368, 75025, 121393, 196418, 317811, 832040, 1346269, 2178309, 3524578, 5702887, 9227465, 14930352, 24157817, 39088169
Offset: 1
Examples
34 is in the sequence as it is a Fibonacci number and it is composite, the product of 2 and 17. 55 is in the sequence as it is a Fibonacci number and it is composite, the product of 5 and 11. 89 is not in the sequence because, although it is a Fibonacci number, it is prime.
Programs
-
Mathematica
Select[Fibonacci[Range[0, 50]], !PrimeQ[#] &] (* Vladimir Joseph Stephan Orlovsky, Jul 22 2008 *)
Comments