The glyph in question appears to be very similar to the uppercase L provided in the "curly" math font of the MathTime Professional 2 complete font set (commercial fonts).

It can be used in three ways:
Method 1: change all math fonts to MTPro2
\documentclass{article}
\usepackage[mtpccal]{mtpro2}
\begin{document}
A set of strings is in the class $\mathcal{L}_{*}$ if and only if
$A$ is \dots within time $P(n)$, for some polynomial $P(n)$.
\end{document}
The package option mtpccal assigns the "curly" script variant to \mathcal. Depending on the font selections in your document, the other MTPro2 fonts may or may not be good matches with the body text (for example, it is a bad match with Computer Modern, as shown here). This also prevents use of the "standard" calligraphic fonts, if needed.

Method 2: declare an additional symbol font (preserves existing settings for all other math)
\documentclass{article}
\DeclareSymbolFont{curly}{U}{mt2ms}{m}{n}
\DeclareSymbolFontAlphabet{\mathcurly}{curly}
\begin{document}
A set of strings is in the class $\mathcurly{L}_{*}$ if and only if
$A$ is \dots within time $P(n)$, for some polynomial $P(n)$.
\end{document}
This is more flexible than Method 1. You can make your own choices about math fonts and use the curly font only as needed. The disadvantage is that another full alphabet is used, which may or may not be an issue depending on the complexity of your document.

Method 3: import this single symbol from MTPro2 only
Using the methodology from Importing a Single Symbol From a Different Font and borrowing the relevant code from mtpro2.sty and umt2ms.fd, this method brings in only the "L" from the MathTime Curly math font. It gives the same output as Method 2, but an additional alphabet is not used.
\documentclass{article}
\DeclareFontFamily{U}{mt2ms}{\skewchar\font42}
\DeclareFontShape{U}{mt2ms}{m}{n}{<-7>mt2mcf<7-9>mt2mcs<9->mt2mct}{}
\DeclareSymbolFont{MTPcurly}{U}{mt2ms}{m}{n}
\DeclareMathSymbol{\cobhamclass}{0}{MTPcurly}{'114}
\begin{document}
A set of strings is in the class $\cobhamclass_{*}$ if and only if
$A$ is \dots within time $P(n)$, for some polynomial $P(n)$.
\end{document}

dutchcalsymbol is not that far either, but the more look-alike symbol is definitely the one from that font. Transform your comment as an answer and I'll accept it. – Clément Jul 07 '14 at 13:29