How to generate an increasing sequence?

depth_points = pm.Uniform(“depth_points”, lower=0, upper=max_depth, shape=num_layers)
I want to generate an increasing sequence of numbers. Is there any way to do this? I’d appreciate it.