946. Continued Fraction Fraction

Given the representation of a continued fraction

a0+1a1+1a2+1a3+=[a0;a1,a2,a3,]

α is a real number with continued fraction representation: α=[2;1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,]
where the number of 1's between each of the 2's are consecutive prime numbers.

β is another real number defined as

β=2α+33α+2

The first ten coefficients of the continued fraction of β are [0;1,5,6,16,9,1,10,16,11] with sum 75.

Find the sum of the first 108 coefficients of the continued fraction of β.

946. 由连分数构成的分数

已知我们可以用连分数的表示形式表示一个实数:

[a0;a1,a2,a3,]=a0+1a1+1a2+1a3+

实数 α 的连分数表示为:

α=[2;1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,]

其中,每两个 2 之间的 1 的个数是连续的素数。

β 是另一个实数,定义为:

β=2α+33α+2

β 的连分数表示的前十项为 [0;1,5,6,16,9,1,10,16,11],其和为 75

β 的连分数表示的前 108 项之和。


这个链接 回到源站。

这个链接 回到详细版题目目录。