What is this as a math series?Im a noob and I want some base footing from arbitrary, to be in the spirit of things, what I consider mathamcallity or Wholeness
>>16827900visualization is for midwits
>>16827908>you're literally past already here by several oil statesblow on some rocks maahnnnn
>>16827900geometric series.https://en.wikipedia.org/wiki/Geometric_progressionso take a first width as constant k.take width increase ratio or factor of r,where r = (width/previous width)then widths are:k, k*r, (kr)r, (kr^2)r...k, kr, kr^2, kr^3... k^n
>>16827908
>>16827908why not:>have good visualization skills>be good at understanding images and diagrams>also be good at equations, numbers, words, theory?that is optimal.
>>16827900Seems to be a construction like picrel.function A(x, y, w, h, level) { const a = w/3; const b = w-a; rect(x, y, w, h); if(level > 0) { A(x, y, a, a, level-1); A(x+a, y, b, b, level-1); } rect(x, y+a, a, h-a);}