Skip to content

Commit 0788930

Browse files
committed
fix detail
1 parent e252233 commit 0788930

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/combinat/sloane_functions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ def _eval(self, n):
603603
from sage.rings.lazy_series_ring import LazyPowerSeriesRing
604604
x = LazyPowerSeriesRing(ZZ, 'x').gen()
605605
p = 1/((1-x)*(1-x**2)*(1-x**5)*(1-x**10))
606-
return ZZ(p.coefficient(n)
606+
return ZZ(p.coefficient(n))
607607

608608

609609
class A000009(SloaneSequence):
@@ -8327,7 +8327,7 @@ def perm_mh(m, h):
83278327
for i in range(m):
83288328
for j in range(n):
83298329
if i <= j and j <= i + h:
8330-
A[i,j] = 1
8330+
A[i, j] = 1
83318331
return A.permanent()
83328332

83338333

0 commit comments

Comments
 (0)