由于最近赶进度,解析写的就很简略
通过推算得出递推式 a [ i ] = a [ i − 1 ] + a [ i − 2 ] ∗ 2 ; a[i] = a[i - 1] + a[i - 2] * 2; a[i]=a[i−1]+a[i−2]∗2; 由于值过于大,所以要用到高精加。