Given the integers p, q and n I would like to generate a vector of length n with the elements
(⌊p ÷ q) (⌊(⌊p ÷ q) ÷ q) ...
In other words I want to construct a vector where the i:th element is {⌊⍵ ÷ q} applied i times on p. How can I do that in APL?