Skip to content

Commit f707813

Browse files
Update proth_number.py
1 parent 2159b09 commit f707813

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

maths/special_numbers/proth_number.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def is_proth_number(number: int) -> bool:
118118

119119
print(f"The {number}th Proth number: {value}")
120120

121-
for number in [1, 2, 3, 5, 9, 13, 49, 57, 193, 241, 163, 201]:
121+
for number in [1, 2, 3, 4, 5, 9, 13, 49, 57, 193, 241, 163, 201]:
122122
if is_proth_number(number):
123123
print(f"{number} is a Proth number")
124124
else:

0 commit comments

Comments
 (0)