A sequence is an ordered collection of objects (usually numbers), which are allowed to repeat. Sequences can be finite or infinite. Two examples are the finite sequence
A recurrence relation is a way of defining the terms of a sequence with respect to the values of previous terms. In the case of Fibonacci's rabbits from the introduction, any given month will contain the rabbits that were alive the previous month, plus any new offspring. A key observation is that the number of offspring in any month is equal to the number of rabbits that were alive two months prior. As a result, if
When finding the
Given: Positive integers
Return: The total number of rabbit pairs that will be present after
n=35
k=4
a=1
b=0
c=a*k
for i in range(1,n):
a=a+b
b=c
c=a*k
print(a)
'Python > rosaland' 카테고리의 다른 글
Counting Point Mutations (0) | 2018.11.21 |
---|---|
Computing GC Content (0) | 2018.11.21 |
Transcribing DNA into RNA (0) | 2018.11.14 |
Complementing a Strand of DNA (0) | 2018.11.14 |
Counting DNA Nucleotides (0) | 2018.11.14 |