OFFSET
1,4
COMMENTS
a(3) and a(4) are the only negative terms of the sequence.
FORMULA
For n >= 5, a(n) = a(n-1) a(n-2) (a(n-1)-1) /(a(n-2)-1).
MATHEMATICA
f[l_List] := Append[l, Times @@ l - Plus @@ l]; Nest[f, {1, 1}, 11] (* Ray Chandler, Oct 09 2006 *)
CROSSREFS
KEYWORD
easy,sign
AUTHOR
Leroy Quet, Oct 08 2006
EXTENSIONS
Extended by Ray Chandler, Oct 09 2006
STATUS
approved