New additions - pyramid number sequencer.
Search: jaffa/math/pyramid
This is a Pyramid number sequencer, where the length of the sequence is based on how many numbers there are in the sequence. Examples:
1
1,2
1,2,3
1,2,3,4
1,2,3,4,5
1,2,3,4,5,6
etc.
You input an integer variable in one end and you get this list out in the other end. The l output is the length of the sequence currently selected, the s outputs the selected number in the sequence.
Thanks to @Captain_Burek for helping me realise this into a proper object, my own table version basically sucked. It worked but was highly inefficient.
