0%

Problem 918


Problem 918


Recursive Sequence Summation

The sequence an is defined by a1=1, and then recursively for n1:
a2n=2ana2n+1=an3an+1
The first ten terms are 1,2,5,4,17,10,17,8,47,34.

Define S(N)=n=1Nan. You are given S(10)=13.

Find S(1012).


递归序列求和

序列an的定义为:a1=1;对于n1,递归定义:
a2n=2ana2n+1=an3an+1
该序列的前十项是1,2,5,4,17,10,17,8,47,34

定义S(N)=n=1Nan。已知S(10)=13

S(1012)


Gitalking ...