September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
26
Task/Ackermann-function/Jq/ackermann-function-3.jq
Normal file
26
Task/Ackermann-function/Jq/ackermann-function-3.jq
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# jq -n -r -f ackermann.jq
|
||||
A(0,0) = 1
|
||||
A(0,1) = 2
|
||||
A(0,2) = 3
|
||||
A(0,3) = 4
|
||||
A(0,4) = 5
|
||||
A(0,5) = 6
|
||||
A(1,0) = 2
|
||||
A(1,1) = 3
|
||||
A(1,2) = 4
|
||||
A(1,3) = 5
|
||||
A(1,4) = 6
|
||||
A(1,5) = 7
|
||||
A(2,0) = 3
|
||||
A(2,1) = 5
|
||||
A(2,2) = 7
|
||||
A(2,3) = 9
|
||||
A(2,4) = 11
|
||||
A(2,5) = 13
|
||||
A(3,0) = 5
|
||||
A(3,1) = 13
|
||||
A(3,2) = 29
|
||||
A(3,3) = 61
|
||||
A(3,4) = 125
|
||||
A(3,5) = 253
|
||||
A(4,0) = 13
|
||||
Loading…
Add table
Add a link
Reference in a new issue