nfdisc(x^5 - x^3 - x^2 + x + 1) \\ 1609, the minimum for signature (1,2)
polsturm(x^5 - x^3 - x^2 + x + 1) \\ 1 real root, so r_1 = 1 and r_2 = 2K.<a> = NumberField(x^5 - x^3 - x^2 + x + 1)
K.discriminant(), K.signature() # (1609, (1, 2))
from sage.rings.number_field.totallyreal_rel import enumerate_totallyreal_fields_all
enumerate_totallyreal_fields_all(7, 20134393) # [[20134393, x^7 - x^6 - 6*x^5 + 4*x^4 + 10*x^3 - 4*x^2 - 4*x + 1]]Each value is an integer proved to be the minimum in the paper its entry cites, and was read from three independent copies: those papers (Battistoni's Theorem 1 for the four rows of degrees $8$ and $9$ that it settles), OEIS A343290 with the five row and column sequences named in the comments, and the LMFDB's list of fields for each signature, which states the bound to which it is complete.
For every entry the generator recomputes, with PARI, the discriminant of the quoted polynomial (nfdisc), its number of real roots (polsturm), its reduced form (polredabs), the Galois group of its splitting field (polgalois) and its class number (bnfinit certified by bnfcertify), and refuses to return a value on any disagreement. Where a complete enumeration is within reach the minimum is re-derived rather than trusted: for the quadratic rows no fundamental discriminant of the right sign is smaller; for the cubic rows Hunter's box [18] lists every cubic field with smaller $|D|$ and finds none of the signature; for the totally real rows of degree $4$ to $8$ Sage's enumerate_totallyreal_fields_all, an implementation of Voight's algorithm [16] sharing no code with the LMFDB, returns exactly one field up to the value, isomorphic to the quoted one. The mixed signatures from degree $4$ on and all of degree $9$ rest on the cited papers and the LMFDB's completeness statement. Outside the generator, when this was written, every value was also compared with Odlyzko's unconditional lower bound for its signature and with Minkowski's bound, and Liang and Zassenhaus's polynomial for the totally complex sextic field was shown by nfisisom to define the field quoted.