2018-09-30 23:01:58 +01:00
---
id: 5900f4a81000cf542c50ffbb
title: 'Problem 316: Numbers in decimal expansions'
2020-11-27 19:02:05 +01:00
challengeType: 5
2019-08-05 09:17:33 -07:00
forumTopicId: 301972
2021-01-13 03:31:00 +01:00
dashedName: problem-316-numbers-in-decimal-expansions
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
2021-07-21 17:59:56 +02:00
Let $p = p_1 p_2 p_3 \ldots$ be an infinite sequence of random digits, selected from {0,1,2,3,4,5,6,7,8,9} with equal probability.
2018-09-30 23:01:58 +01:00
2021-07-21 17:59:56 +02:00
It can be seen that $p$ corresponds to the real number $0.p_1 p_2 p_3 \ldots$.
2018-09-30 23:01:58 +01:00
2021-07-21 17:59:56 +02:00
It can also be seen that choosing a random real number from the interval [0,1) is equivalent to choosing an infinite sequence of random digits selected from {0,1,2,3,4,5,6,7,8,9} with equal probability.
2018-09-30 23:01:58 +01:00
2021-07-21 17:59:56 +02:00
For any positive integer $n$ with $d$ decimal digits, let $k$ be the smallest index such that $p_k, p_{k + 1}, \ldots p_{k + d - 1}$ are the decimal digits of $n$, in the same order.
2018-09-30 23:01:58 +01:00
2021-07-21 17:59:56 +02:00
Also, let $g(n)$ be the expected value of $k$; it can be proven that $g(n)$ is always finite and, interestingly, always an integer number.
2018-09-30 23:01:58 +01:00
2021-07-21 17:59:56 +02:00
For example, if $n = 535$, then
2018-09-30 23:01:58 +01:00
2021-07-21 17:59:56 +02:00
for $p = 31415926\mathbf{535}897\ldots$, we get $k = 9$
for $p = 35528714365004956000049084876408468\mathbf{535}4\ldots$, we get $k = 36$
etc and we find that $g(535) = 1008$.
Given that $\displaystyle\sum_{n = 2}^{999} g\left(\left\lfloor\frac{{10}^6}{n}\right\rfloor\right) = 27280188$, find $\displaystyle\sum_{n = 2}^{999\\,999} g\left(\left\lfloor\frac{{10}^{16}}{n}\right\rfloor\right)$.
**Note:** $\lfloor x\rfloor$ represents the floor function.
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-21 17:59:56 +02:00
`numbersInDecimalExpansion()` should return `542934735751917760` .
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
2021-07-21 17:59:56 +02:00
assert.strictEqual(numbersInDecimalExpansion(), 542934735751917760);
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-21 17:59:56 +02:00
function numbersInDecimalExpansion() {
2020-09-15 09:57:40 -07:00
2018-09-30 23:01:58 +01:00
return true;
}
2021-07-21 17:59:56 +02:00
numbersInDecimalExpansion();
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
```