1.4 KiB
1.4 KiB
id, localeTitle, challengeType, title
id | localeTitle | challengeType | title |
---|---|---|---|
5 | 5900f41a1000cf542c50ff2d | 5 | Problem 174: Counting the number of "hollow" square laminae that can form one, two, three, ... distinct arrangements |
Description
Si t representa el número de mosaicos utilizados, diremos que t = 8 es el tipo L (1) y t = 32 es el tipo L (2). Sea N (n) el número de t ≤ 1000000, de manera que t sea tipo L (n); por ejemplo, N (15) = 832. ¿Qué es ∑ N (n) para 1 ≤ n ≤ 10?
Instructions
Tests
tests:
- text: <code>euler174()</code> debe devolver 209566.
testString: 'assert.strictEqual(euler174(), 209566, "<code>euler174()</code> should return 209566.");'
Challenge Seed
function euler174() {
// Good luck!
return true;
}
euler174();
Solution
// solution required