You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
147 B
Python
7 lines
147 B
Python
5 years ago
|
# tahle vypada fibonacciho posloupnost :
|
||
|
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ... # atd
|
||
|
# zacneme matematickou definici :
|
||
|
#f(0) = 0
|
||
|
#f(1) = 1
|
||
|
|