import Foundation func vanEckSequence(start: [Int], maxLength: Int) -> [Int] { let toCompute = maxLength - start.count var seq = start + Array(repeating: 0, count: toCompute) // print(seq.count) for i in start.count..