This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// RecursiveSequence.swift | |
// | |
// Created by John Scott on 31/03/2022. | |
// | |
/// | |
/// To define a sequence by recursion, one needs a rule, called recurrence relation to construct each | |
/// element in terms of the ones before it. In addition, enough initial elements must be provided so | |
/// that all subsequent elements of the sequence can be computed by successive applications of |
OlderNewer