http://snippets.bentasker.i2p/posts/python/calculate-fibonacci-sequences.html
Can be used to calculate Fibonacci numbers, Lucas numbers or an arbitrary Fibonacci like sequence We're simply calculating Fn = Fn-1 + Fn-2 for a given number of iterations When called without arguments, the default behaviour is to return the first 12 numbers of Fibonacci Returns a list of numbers in the sequence, with the provided seeds at the beginning Similar To Check for Fibonacci Sequence (Python) Details Language: Python License: BSD-3-Clause Snippet def calculateFibonacciSequence ( F1 = 1 , F2 = 1 ,...