summaryrefslogtreecommitdiff
path: root/progs/a418.py
blob: 233dcc1155a676bb51ea8761ff17222b7cbd22a2 (plain)
1
2
3
4
import math
def tn_gp(a,n,r):
  tn = a * (math.pow(r, n - 1))
  return tn