1. Standard Sequence Generation
Computer Science StudentBackground
Need to verify the first 15 terms of the standard Fibonacci sequence for an assignment.
Problem
Manually calculating terms is prone to error.
How to use
Set F₀ to 0, F₁ to 1, and count to 15. Select 'Array' as the output format.
startA: 0, startB: 1, count: 15, outputFormat: 'array'Outcome
A clean array containing the first 15 numbers of the sequence is generated instantly.