OFFSET
1,1
COMMENTS
All primes except prime Fibonacci numbers are in this sequence.
EXAMPLE
Although 12 can be expressed as a product of Fibonacci numbers, it takes three of them, not two, hence 12 is in the list.
There is no way to express 14 as a product of Fibonacci numbers since its larger prime factor, 7, is not a Fibonacci number, hence 14 is in the list.
16 is not in the list because it can be expressed as 2 * 8.
MATHEMATICA
nn = 12; f = Fibonacci[Range[2, nn]]; f2 = Select[Union[Flatten[Outer[Times, f, f]]], # <= f[[-1]] &]; Complement[Range[f[[-1]]], f2] (* T. D. Noe, Sep 03 2013 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Alonso del Arte, Sep 02 2013
STATUS
approved