index
:
clp
main
A small Python compiler with optimizer written in Java
dcariotti
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
progs
/
a854.py
blob: 6c398441e90910793c0d96d2b0cac2f30ff9bc66 (
plain
)
1
2
3
4
import
math
def
sum_gp
(
a
,
n
,
r
):
total
=
(
a
*
(
1
-
math
.
pow
(
r
,
n
)))
/
(
1
-
r
)
return
total