def F(n): if n == 1: return 3 else: return 3 * F(n - 1) - 1 # Вычислим значение F(7) и F(25) print(F(7)) print(F(25))