The sequence of Hermite numbers is defined as
h[0] = 1, h[1] = 0, and h[n] = -2*(n-1)*h[n-2].
Draw a flowchart for the algorithm to compute a list of the first 100 Hermite numbers.
Give the corresponding Python code for this algorithm.