If “Layer A” and “Layer D” are the end points, one in-between layer could have a Position expression like this:
A = thisComp.layer(“Layer A”).position;
D = thisComp.layer(“Layer D”).position;
A + (D – A)/3;
And the other one like this:
A = thisComp.layer(“Layer A”).position;
D = thisComp.layer(“Layer D”).position;
A + (D – A)*2/3;
There are ways to automate it based on layer index if you have a bunch of layers, but this should get you started.
Dan