Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
6
Task/Leonardo-numbers/Mathematica/leonardo-numbers.math
Normal file
6
Task/Leonardo-numbers/Mathematica/leonardo-numbers.math
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
L[0,L0_:1,___]:=L0
|
||||
L[1,L0_:1,L1_:1,___]:=L1
|
||||
L[n_,L0_:1,L1_:1,add_:1]:=L[n-1,L0,L1,add]+L[n-2,L0,L1,add]+add
|
||||
|
||||
L/@(Range[25]-1)
|
||||
L[#,0,1,0]&/@(Range[25]-1)
|
||||
Loading…
Add table
Add a link
Reference in a new issue