------
## 最终结论
```python
def find_rect_num(n):
    return n * (n + 1)

# Test cases
assert find_rect_num(4) == 20
assert find_rect_num(5) == 30
assert find_rect_num(6) == 42
```