Given the recurrence relation$$ a_{n}=\sum_{t=0}^{n-1}\left(\begin{array}{l} n \\ t \end{array}\right)(-1)^{n-t-1} 2^{t(n-t)} a_{t}, \quad a_{0}=1 $$ with $a_0=1$, I tried to evaluate $a_3$, and I got it equal to $25$, but the book shows it equal to $19$.
My effort: $a_1=1, a_2=3$ gives
$$a_3=\binom{3}{0}\times (-1)^2\times 2^0\times 1+\binom{3}{1}\times (-1)^1\times 2^2\times 1+\binom{3}{2}\times (-1)^0\times 2^2\times 3\\=1-12+36=25$$
Here is the text from the book (Handbook of Enumerative Combinatorics by Miklos Bona)
A very classical problem is to enumerate acyclic digraphs; they are clearly loopless and given two distinct vertices $u$ and $v$, only one of the two arcs $u v$ and $v u$ can be present. Let $a_{n}$ be the number of acyclic digraphs on $n$ labeled vertices, and let $a_{n, m}$ be the number of those having $m$ arcs. There is a simple recurrence for computing these numbers, found independently in and rediscovered several times. The number of acyclic digraphs such that $k$ given vertices are sources is equal to $2^{k(n-k)} a_{n-k}$ since the remaining $n-k$ vertices induce an acyclic digraph and every arc from the sources to the complement is allowed. Given that an acyclic digraph always has at least one source, inclusion-exclusion gives $$ a_{n}=\sum_{t=0}^{n-1}\left(\begin{array}{l} n \\ t \end{array}\right)(-1)^{n-t-1} 2^{t(n-t)} a_{t}, \quad a_{0}=1 $$ This gives the sequence $$ 1,1,3,19,219,4231,130023, \ldots $$