I like to use it whenever I have the need for parser support (nowadays you might call it DSL) and whenever I implement symbol-processing algorithms.
The latest productive code I've written in F# concerns filters (used to filter incomming messages to a logging service). I've got a couple of basic filters (that processes the subject, etc.) and higher-order logic filters that combine other filters with AND/OR/NOT operators.
The implementation simplifies such "expressions" by converting them to CNF, collecting by type and using special rules (like a < 5 && a < 10 => a < 5, etc.)
On top of this I createt a simple parser with fsyacc to give the users of this service a simpler way to create filters.
I guess the hole thing has in F# as many lines of code I would have needed with C# to write just the simplification ;)