Oliver Eyton-Williams 0bd52f8bd1
Feat: add new Markdown parser (#39800)
and change all the challenges to new `md` format.
2020-11-27 10:02:05 -08:00

805 B
Raw Blame History

id, title, challengeType, forumTopicId
id title challengeType forumTopicId
5900f3f31000cf542c50ff06 Problem 135: Same differences 5 301763

--description--

Given the positive integers, x, y, and z, are consecutive terms of an arithmetic progression, the least value of the positive integer, n, for which the equation, x2 y2 z2 = n, has exactly two solutions is n = 27:

342 272 202 = 122 92 62 = 27

It turns out that n = 1155 is the least value which has exactly ten solutions.

How many values of n less than one million have exactly ten distinct solutions?

--hints--

euler135() should return 4989.

assert.strictEqual(euler135(), 4989);

--seed--

--seed-contents--

function euler135() {

  return true;
}

euler135();

--solutions--

// solution required