Simon’s Fibonacci function and Fibonacci counter in p5.js
Simon came up with this Fibonacci function while taking a walk downtown: f(0) = 0 f(1) = 1 f(n) = f(n-1)+f(n-2) When we got home, he used the function to … Continue reading Simon’s Fibonacci function and Fibonacci counter in p5.js