Sum multiples of 3 and 5: Difference between revisions

m
m (Adding the immediate (and slower) solution)
Line 3,976:
===Efficient solution===
This is a straightforward way to calculate the sum for higher values of n, taking into account that the sum of multiples of 3 and 5 is the sum of multiples of 3 andplus the sum of multiples of 5, minus the sum of multiples of 15 to remove double counting.
≪ → n
≪ 0 1 3 FOR j
1,150

edits