The first multiplicant is given. So the open question is "what is the second multiplicant"?
The list can be grouped in sixes. So lines 1-6 is one group, the rules count for each group.
- Define fm as the given first multiplicant of the row. Start with
4
. Increment fm by one on each row
- Set cm (current multiplicant) to 1
- The result for each row is
result = fm * cm
. You only change cm
from row to row
These are the rules for the six rows
- cm := cm + 1
- cm := fm * cm
- cm := fm - 1
- cm := fm
- cm := cm * fm / 2
- cm := (fm - 1) / 2
The sequence of cm
would be
2, 10, 5, 7, 28, 4, 5, 55, 11, 13, 91, 7, 8, 136, 17, 19, 190, 10
I think you can continue like that