For n = 1:
- we choose a(1) = 1,
- we sieve out the values a(1) = 1, a(1) = 1, 2, 3, 5, 8, 13, ...
For n = 2:
- we choose a(2) = 4,
- we sieve out the values a(1) = 1, a(2) = 4, 5, 9, 14, 23, 37, ...
- we sieve out the values a(2) = 4, a(2) = 4, 8, 12, 20, 32, 52, ...
- we sieve out the values a(2) = 4, a(1) = 1, 5, 6, 11, 17, 28, ...
For n = 3:
- we choose a(3) = 7,
- we sieve out the values a(1) = 1, a(3) = 7, 8, 15, 23, 38, 61, ...
- we sieve out the values a(2) = 4, a(3) = 7, 11, 18, 29, 47, 76, ...
- we sieve out the values a(3) = 7, a(3) = 7, 14, 21, 35, 56, 91, ...
- we sieve out the values a(3) = 7, a(2) = 4, 11, 15, 26, 41, 67, ...
- we sieve out the values a(3) = 7, a(1) = 1, 8, 9, 17, 26, 43, ...
For n = 4:
- we choose a(4) = 10.