2018-09-30 23:01:58 +01:00
|
|
|
---
|
|
|
|
id: 5900f49d1000cf542c50ffaf
|
|
|
|
title: 'Problem 304: Primonacci'
|
2020-11-27 19:02:05 +01:00
|
|
|
challengeType: 5
|
2019-08-05 09:17:33 -07:00
|
|
|
forumTopicId: 301958
|
2021-01-13 03:31:00 +01:00
|
|
|
dashedName: problem-304-primonacci
|
2018-09-30 23:01:58 +01:00
|
|
|
---
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --description--
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2021-07-21 17:59:56 +02:00
|
|
|
For any positive integer $n$ the function $\text{next_prime}(n)$ returns the smallest prime $p$ such that $p > n$.
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2021-07-21 17:59:56 +02:00
|
|
|
The sequence $a(n)$ is defined by: $a(1) = \text{next_prime}({10}^{14})$ and $a(n) = \text{next_prime}(a(n - 1))$ for $n > 1$.
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2021-07-21 17:59:56 +02:00
|
|
|
The fibonacci sequence $f(n)$ is defined by: $f(0) = 0$, $f(1) = 1$ and $f(n) = f(n - 1) + f(n - 2)$ for $n > 1$.
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2021-07-21 17:59:56 +02:00
|
|
|
The sequence $b(n)$ is defined as $f(a(n))$.
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2021-07-21 17:59:56 +02:00
|
|
|
Find $\sum b(n)$ for $1≤n≤100\\,000$. Give your answer $\bmod 1\\,234\\,567\\,891\\,011$.
|
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
|
|
|
`primonacci()` should return `283988410192`.
|
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(primonacci(), 283988410192);
|
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 primonacci() {
|
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
|
|
|
primonacci();
|
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
|
|
|
|
```
|