def h(n):
    return h(n-1) + 6 * (n-1)

n = 6
print(f"Het {n}e centraal zeshoeksgetal bevat {h(n)} stippen")
