Files
Nicholas Carrigan (he/him) 3da4be21bb chore: seed chinese traditional (#42005)
Seeds the chinese traditional files manually so we can deploy to
staging.
2021-05-05 22:43:49 +05:30

900 B

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
5900f4c81000cf542c50ffdb Problem 348: Sum of a square and a cube 5 302007 problem-348-sum-of-a-square-and-a-cube

--description--

Many numbers can be expressed as the sum of a square and a cube. Some of them in more than one way.

Consider the palindromic numbers that can be expressed as the sum of a square and a cube, both greater than 1, in exactly 4 different ways. For example, 5229225 is a palindromic number and it can be expressed in exactly 4 different ways: 22852 + 203 22232 + 663 18102 + 1253 11972 + 1563

Find the sum of the five smallest such palindromic numbers.

--hints--

euler348() should return 1004195061.

assert.strictEqual(euler348(), 1004195061);

--seed--

--seed-contents--

function euler348() {

  return true;
}

euler348();

--solutions--

// solution required