Files
freeCodeCamp/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-341-golombs-self-describing-sequence.english.md
Randell Dawson a7eb800450 fix(curriculum): Remove unnecessary assert message argument from English Coding Interview Prep challenges - Project Euler - 04 (#36418)
* fix: removed assert msg argument-4

* fix: remove double quotes surrounding testString code

Co-Authored-By: Tom <20648924+moT01@users.noreply.github.com>
2019-07-27 07:34:19 -05:00

1.0 KiB

id, challengeType, title
id challengeType title
5900f4c11000cf542c50ffd3 5 Problem 341: Golomb's self-describing sequence

Description

The Golomb's self-describing sequence {G(n)} is the only nondecreasing sequence of natural numbers such that n appears exactly G(n) times in the sequence. The values of G(n) for the first few n are

n123456789101112131415…G(n)122334445556666…

You are given that G(103) = 86, G(106) = 6137. You are also given that ΣG(n3) = 153506976 for 1 ≤ n < 103.

Find ΣG(n3) for 1 ≤ n < 106.

Instructions

Tests

tests:
  - text: <code>euler341()</code> should return 56098610614277016.
    testString: assert.strictEqual(euler341(), 56098610614277016);

Challenge Seed

function euler341() {
  // Good luck!
  return true;
}

euler341();

Solution

// solution required