Just the classic algorithms that have been used for thousands of years, for calculating the Fibonacci sequence. This took me about 10 minutes. Also, can you please love and favorite? Thanks! :)
Here's the Python scripts. I translated it, using my brain. print("Fibonacci sequence, up to 100th number:") print() integer = 0 init = 1 for i in range(100): print("number", str(i + 1) + ": " + str(integer)) integer = integer + init init = integer - init