Skip to content

Commit 57b1523

Browse files
authored
Fix Fibonacci sequence description
1 parent a1dabfb commit 57b1523

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

categories/euler/prob002-gerdr.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
L<https://projecteuler.net/problem=2>
1010
1111
Each new term in the Fibonacci sequence is generated by adding the previous
12-
two terms. By starting with 1 and 2, the first 10 terms will be:
12+
two terms. By starting with three terms 1, 1, and 2, the first 10 terms will be:
1313
14-
1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ...
14+
1, 1, 2, 3, 5, 8, 13, 21, 34, 55 ...
1515
1616
By considering the terms in the Fibonacci sequence whose values do not
1717
exceed four million, find the sum of the even-valued terms.

0 commit comments

Comments
 (0)