Files
gikf 47fc3c6761 fix(curriculum): clean-up Project Euler 281-300 (#42922)
* fix: clean-up Project Euler 281-300

* fix: missing image extension

* fix: missing power

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>

* fix: missing subscript

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>
2021-07-22 12:38:46 +09:00

923 B

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
5900f4861000cf542c50ff99 Problem 282: The Ackermann function 5 301933 problem-282-the-ackermann-function

--description--

For non-negative integers m, n, the Ackermann function A(m, n) is defined as follows:

$$A(m, n) = \begin{cases} n + 1 & \text{if $m = 0$} \\ A(m - 1, 1) & \text{if m > 0 and $n = 0$} \\ A(m - 1, A(m, n - 1)) & \text{if m > 0 and $n > 0$} \end{cases}$$

For example A(1, 0) = 2, A(2, 2) = 7 and A(3, 4) = 125.

Find \displaystyle\sum_{n = 0}^6 A(n, n) and give your answer mod {14}^8.

--hints--

ackermanFunction() should return 1098988351.

assert.strictEqual(ackermanFunction(), 1098988351);

--seed--

--seed-contents--

function ackermanFunction() {

  return true;
}

ackermanFunction();

--solutions--

// solution required