Level 34

by Joel I

The numbers below are determined by the following function:

function Y(int x, int k1, int k2):
    return pow(x + 2, k1) mod (k1-2)*(k2-2)

Sequences A, B, C, and D each use different values for K1 and K2, all random integers between 1000 and 1200. The first three values are given. (Y(1), Y(2), Y(3))

The solution to this level is the sum of the next numbers in the seqeunce for A, B, C, and D.

344691,256,345235
897048,772249,336185
596861,231086,704375
951913,1046740,88793

You have 60 seconds to solve this level