I want to generate a sequence. Like {11,12,13,14} becomes {11,23 (11+12),36 (11+12+13),50 (11+12+13+14).
I'm trying to do that with a loop node. But I never get the best results. That image shows how I did it. But it has many problems. For example, the resulting sequence cannot be cleared.
The series looks like an arithmetic progression with common difference of 1, combined with a fibonacci recursive formula. Found javascript code for fibonacci recursion. More study needed.
- Brian