I am looking for a way to generate a "triangular" graph of the following shape for arbitrary given depth, with vertices at positions similar to the numbers in Pascal's triangle, and vertical edges only:
Graph[{1 -> 2, 1 -> 3, 2 -> 4, 2 -> 5, 3 -> 5, 3 -> 6, 4 -> 7, 4 -> 8,
5 -> 8, 5 -> 9, 6 -> 9, 6 -> 10}, VertexLabels -> Automatic]

I was unsuccessful in using any of the parametric graphs available in Mathematica.
Thank you for any hints you might provide.