Files
freeCodeCamp/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-361-subsequence-of-thue-morse-sequence.md
gikf 7d9496e52c fix(curriculum): clean-up Project Euler 361-380 (#43002)
* fix: clean-up Project Euler 361-380

* fix: improve wording

Co-authored-by: Sem Bauke <46919888+Sembauke@users.noreply.github.com>

* fix: remove unnecessary paragraph

* fix: corrections from review

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

Co-authored-by: Sem Bauke <46919888+Sembauke@users.noreply.github.com>
Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>
2021-07-29 12:48:17 -07:00

1.6 KiB

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
5900f4d51000cf542c50ffe8 Problem 361: Subsequence of Thue-Morse sequence 5 302022 problem-361-subsequence-of-thue-morse-sequence

--description--

The Thue-Morse sequence \\{T_n\\} is a binary sequence satisfying:

  • T_0 = 0
  • T_{2n} = T_n
  • T_{2n + 1} = 1 - T_n

The first several terms of \\{T_n\\} are given as follows: 01101001\color{red}{10010}1101001011001101001\ldots.

We define \\{A_n\\} as the sorted sequence of integers such that the binary expression of each element appears as a subsequence in \\{T_n\\}. For example, the decimal number 18 is expressed as 10010 in binary. 10010 appears in \\{T_n\\} (T_8 to T_{12}), so 18 is an element of \\{A_n\\}. The decimal number 14 is expressed as 1110 in binary. 1110 never appears in \\{T_n\\}, so 14 is not an element of \\{A_n\\}.

The first several terms of A_n are given as follows:

$$\begin{array}{cr} n & 0 & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10 & 11 & 12 & \ldots \\ A_n & 0 & 1 & 2 & 3 & 4 & 5 & 6 & 9 & 10 & 11 & 12 & 13 & 18 & \ldots \end{array}$$

We can also verify that A_{100} = 3251 and A_{1000} = 80\\,852\\,364\\,498.

Find the last 9 digits of \displaystyle\sum_{k = 1}^{18} A_{{10}^k}.

--hints--

subsequenceOfThueMorseSequence() should return 178476944.

assert.strictEqual(subsequenceOfThueMorseSequence(), 178476944);

--seed--

--seed-contents--

function subsequenceOfThueMorseSequence() {

  return true;
}

subsequenceOfThueMorseSequence();

--solutions--

// solution required