Factorions: Difference between revisions

Fix Python solution as it was incorrect output (The factorions for base 9 were: 0 1 2 41282)
(Fix Python solution as it was incorrect output (The factorions for base 9 were: 0 1 2 41282))
Line 880:
for b in range(9, 12+1):
print(f"The factorions for base {b} are:")
for i in range(1, 1500000):
fact_sum = 0
j = i
1,481

edits