Image description:
There are two sides to the image divided at the center. The green are factors existing in -f and the red are factors existing in e. Each pixel to the right of the center represents the occurrence of a factor (example center + 1 = gcd(a, 5) while center + 2 = gcd(a, 13)), same goes for the green (although moving in the opposite direction, ie center = gcd(a, 5), center - 1 = gcd(a, 13)).
What we see here are primes multiplied by RSA100 (primes from column 1). I got a bit lazy so we're talking about primes that exist in (1, 1) as a (that is a[t] = p).
Each frame is an INCREASE in the product. So the very first frame is RSA100 * 5, the second is RSA100 * 5 * 13, the third is RSA100 * 5 * 13 * 41 …
The height is represented by t-values. So we create RSA100 * 5, then calculate the e and -f for that record and generate the first 10000 t's and compute the gcd against each factor. Green and red colors represent the factors we multiply with (distinguished by their x-coordinate) and white cells are represented as RSA100a or RSA100b (Not sure if they actually occur).