2018-09-30 23:01:58 +01:00
---
id: 5900f5141000cf542c510027
title: 'Problem 423: Consecutive die throws'
2020-11-27 19:02:05 +01:00
challengeType: 5
2019-08-05 09:17:33 -07:00
forumTopicId: 302093
2021-01-13 03:31:00 +01:00
dashedName: problem-423-consecutive-die-throws
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
2021-07-29 20:14:09 +02:00
Let $n$ be a positive integer.
2020-11-27 19:02:05 +01:00
2021-07-29 20:14:09 +02:00
A 6-sided die is thrown $n$ times. Let $c$ be the number of pairs of consecutive throws that give the same value.
2018-09-30 23:01:58 +01:00
2021-07-29 20:14:09 +02:00
For example, if $n = 7$ and the values of the die throws are (1, 1, 5, 6, 6, 6, 3), then the following pairs of consecutive throws give the same value:
2018-09-30 23:01:58 +01:00
2021-07-29 20:14:09 +02:00
$$\begin{align}
& (\underline{1}, \underline{1}, 5, 6, 6, 6, 3) \\\\
& (1, 1, 5, \underline{6}, \underline{6}, 6, 3) \\\\
& (1, 1, 5, 6, \underline{6}, \underline{6}, 3)
\end{align}$$
2018-09-30 23:01:58 +01:00
2021-07-29 20:14:09 +02:00
Therefore, $c = 3$ for (1, 1, 5, 6, 6, 6, 3).
2018-09-30 23:01:58 +01:00
2021-07-29 20:14:09 +02:00
Define $C(n)$ as the number of outcomes of throwing a 6-sided die $n$ times such that $c$ does not exceed $π(n)$.< sup > 1< / sup >
2018-09-30 23:01:58 +01:00
2021-07-29 20:14:09 +02:00
For example, $C(3) = 216$, $C(4) = 1290$, $C(11) = 361\\,912\\,500$ and $C(24) = 4\\,727\\,547\\,363\\,281\\,250\\,000$.
Define $S(L)$ as $\sum C(n)$ for $1 ≤ n ≤ L$.
For example, $S(50)\bmod 1\\,000\\,000\\,007 = 832\\,833\\,871$.
Find $S(50\\,000\\,000)\bmod 1\\,000\\,000\\,007$.
< sup > 1< / sup > $π$ denotes the prime-counting function, i.e. $π(n)$ is the number of primes $≤ n$.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --hints--
2018-09-30 23:01:58 +01:00
2021-07-29 20:14:09 +02:00
`consecutiveDieThrows()` should return `653972374` .
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
2021-07-29 20:14:09 +02:00
assert.strictEqual(consecutiveDieThrows(), 653972374);
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
# --seed--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
## --seed-contents--
2018-09-30 23:01:58 +01:00
```js
2021-07-29 20:14:09 +02:00
function consecutiveDieThrows() {
2020-09-15 09:57:40 -07:00
2018-09-30 23:01:58 +01:00
return true;
}
2021-07-29 20:14:09 +02:00
consecutiveDieThrows();
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
# --solutions--
2018-09-30 23:01:58 +01:00
```js
// solution required
```