I'm not making heads or tails of these latest crumbs from VQC. So I've been looking at something else.
I noticed how we can "climb" down the n's from a given record. As we increase the a and b monotonically we will jump between different e's and the n will at certain times lower by one until it hits 1.
For (e, 2) (where applicable) this follows a simple equation of d - floor((e - 1)/2).
Meaning to go from (3, 2, 3), which is {3:2:12:5:7:21} you add 11 to both 7 and 21.
d here is 12, 12 - (3 - 1)/2 = 11. The record for 7 + 11, 21 + 11 is (0, 1, 24, 6, 18, 32) which is also the first record that has n = 1 for 7 + k, 21 + k for k < 11. For these records the x in the record (e, 1) will always be the (e, 2) x + 1.
No idea if this is useful, but it was interesting. For n 2 I haven't spotted an obvious pattern yet.