3319.Yet Another Number Sequence

Time Limit: 1s Memory Limit: 256MB

Everyone knows what the Fibonacci sequence is. This sequence can be defined by the recurrence relation:
F1=1,F2=2,Fi=Fi-1+Fi-2(i \gt 2).
We'll define a new number sequence Ai(k) by the formula:
Ai(k)=Fi \times ik(i \ge 1).
In this problem, your task is to calculate the following sum: A1(k)+A2(k)+...+An(k). The answer can be very large, so print it modulo 1000000007 (109+7).

Input Format(From the terminal/stdin)

The first line contains two space-separated integers n, k (1 \le n \le 1017;1 \le k \le 40).

Output Format(To the terminal/stdout)

Print a single integer - the sum of the first n elements of the sequence Ai(k) modulo 1000000007 (109+7).

Sample Input 1

Copy
1 1
 · \n

Sample Output 1

Copy
1
 \n

Sample Input 2

Copy
4 1
 · \n

Sample Output 2

Copy
34
  \n

Sample Input 3

Copy
5 2
 · \n

Sample Output 3

Copy
316
   \n

Sample Input 4

Copy
7 4
 · \n

Sample Output 4

Copy
73825
     \n

Submit

请先 登录

© 2025 FAQs