(loop)
• Row 0 contains 1 number—the number 1
• Each subsequent row is one longer than the one before and follows the pattern that you’ll discover.
The first five rows are
[[1],
[1, 2],
[2, 3, 5],
[5, 7, 10, 15],
[15, 20, 27, 37, 52]
]
Your task: Implement a function LoTri(n: int) -> List[List[int]]