id stringlengths 8 8 | question_type stringclasses 3
values | sequence_type stringclasses 10
values | question stringlengths 186 261 | answer int64 -19 30.5B ⌀ | visible_length int64 5 8 | start_position int64 0 9 | nth_element int64 4 29 | formula stringlengths 2 42 |
|---|---|---|---|---|---|---|---|---|
d4d9b26a | nth | arithmetic | Consider the following sequence: 9, 14, 19, 24, 29, 34, 39, ...
What is the 21th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 109 | 7 | 0 | 20 | 9 + 5 * x |
0d238e0e | next | arithmetic | Consider the following sequence: 4, 14, 24, 34, 44, 54, 64, 74, ...
What is the next number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 84 | 8 | 0 | 8 | 4 + 10 * x |
ea08a832 | previous | arithmetic | Consider the following sequence: ..., 24, 26, 28, 30, 32, 34, 36, 38, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 22 | 8 | 8 | 7 | 8 + 2 * x |
92dd296f | nth | fibonacci | Consider the following sequence: 5, 4, 9, 13, 22, 35, ...
What is the 8th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 92 | 6 | 0 | 7 | f(0) = 5; f(1) = 4 ;f(n) = f(n-1) + n(n-1) |
e52e2936 | previous | arithmetic | Consider the following sequence: ..., 14, 16, 18, 20, 22, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 12 | 5 | 5 | 4 | 4 + 2 * x |
d6553cfd | nth | fibonacci | Consider the following sequence: 1, 3, 4, 7, 11, ...
What is the 11th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 199 | 5 | 0 | 10 | f(0) = 1; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
2bf0d271 | previous | fibonacci | Consider the following sequence: ..., 29, 47, 76, 123, 199, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 18 | 5 | 5 | 4 | f(0) = 3; f(1) = 4 ;f(n) = f(n-1) + n(n-1) |
ee2eb8f4 | nth | geometric | Consider the following sequence: 5, 15, 45, 135, 405, 1215, 3645, 10935, ...
What is the 14th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 7,971,615 | 8 | 0 | 13 | 5 * 3 ** x |
73fdc86f | nth | triangular | Consider the following sequence: 1, 3, 6, 10, 15, 21, 28, ...
What is the 18th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 171 | 7 | 1 | 18 | x * (x+1) / 2 |
fe34a8dd | previous | quadratic | Consider the following sequence: ..., 57, 79, 105, 135, 169, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 39 | 5 | 5 | 4 | 2 * x ** 2 + 0 * x + 7 |
55b01e05 | nth | arithmetic | Consider the following sequence: 7, 16, 25, 34, 43, ...
What is the 13th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 115 | 5 | 0 | 12 | 7 + 9 * x |
a6387b36 | nth | quadratic | Consider the following sequence: 3, 9, 17, 27, 39, ...
What is the 16th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 303 | 5 | 0 | 15 | 1 * x ** 2 + 5 * x + 3 |
b5a1542d | previous | arithmetic | Consider the following sequence: ..., 36, 42, 48, 54, 60, 66, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 30 | 6 | 5 | 4 | 6 + 6 * x |
13bdd116 | next | arithmetic | Consider the following sequence: 9, 17, 25, 33, 41, 49, 57, ...
What is the next number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 65 | 7 | 0 | 7 | 9 + 8 * x |
044d4e91 | previous | monotonic_random | Consider the following sequence: ..., -286, -374, -410, -421, -453, -552, -622, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | null | 7 | 8 | 7 | monotonic_decrease_random starts with 5 |
8728f355 | nth | geometric | Consider the following sequence: 5, 20, 80, 320, 1280, 5120, 20480, ...
What is the 10th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 1,310,720 | 7 | 0 | 9 | 5 * 4 ** x |
b3fe0e90 | nth | arithmetic | Consider the following sequence: 1, 8, 15, 22, 29, 36, 43, 50, ...
What is the 29th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 197 | 8 | 0 | 28 | 1 + 7 * x |
8add333d | previous | arithmetic | Consider the following sequence: ..., 32, 38, 44, 50, 56, 62, 68, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 26 | 7 | 5 | 4 | 2 + 6 * x |
e1a5d584 | previous | quadratic | Consider the following sequence: ..., 27, 37, 49, 63, 79, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 19 | 5 | 6 | 5 | 1 * x ** 2 + -3 * x + 9 |
5a69a215 | previous | geometric | Consider the following sequence: ..., 2187, 6561, 19683, 59049, 177147, 531441, 1594323, 4782969, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 729 | 8 | 7 | 6 | 1 * 3 ** x |
a5e281d6 | previous | arithmetic | Consider the following sequence: ..., 18, 20, 22, 24, 26, 28, 30, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 16 | 7 | 7 | 6 | 4 + 2 * x |
8527c2fc | previous | arithmetic | Consider the following sequence: ..., 66, 76, 86, 96, 106, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 56 | 5 | 6 | 5 | 6 + 10 * x |
1dc7b2a5 | nth | alternating | Consider the following sequence: -1, 2, -3, 4, -5, ...
What is the 14th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 14 | 5 | 1 | 14 | (-1) ** x * x |
a7a20aeb | nth | quadratic | Consider the following sequence: -3, -2, 1, 6, 13, 22, 33, 46, ...
What is the 14th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 166 | 8 | 0 | 13 | 1 * x ** 2 + 0 * x + -3 |
ba7e81be | previous | geometric | Consider the following sequence: ..., 156250, 781250, 3906250, 19531250, 97656250, 488281250, 2441406250, 12207031250, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 31,250 | 8 | 7 | 6 | 2 * 5 ** x |
07def1e8 | next | monotonic_random | Consider the following sequence: 8, 38, 111, 128, 197, 229, 329, 382, ...
What is the next number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | null | 8 | 1 | 9 | monotonic_increase_random starts with 8 |
38bf72c9 | next | quadratic | Consider the following sequence: -5, -8, -7, -2, 7, ...
What is the next number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 20 | 5 | 0 | 5 | 2 * x ** 2 + -5 * x + -5 |
aa422a51 | nth | power | Consider the following sequence: 1, 5, 25, 125, 625, ...
What is the 8th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 78,125 | 5 | 0 | 7 | 5 ** x |
40c8dd90 | nth | arithmetic | Consider the following sequence: 1, 5, 9, 13, 17, ...
What is the 10th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 37 | 5 | 0 | 9 | 1 + 4 * x |
4bb5813a | nth | geometric | Consider the following sequence: 3, 6, 12, 24, 48, ...
What is the 7th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 192 | 5 | 0 | 6 | 3 * 2 ** x |
1aa42086 | previous | monotonic_random | Consider the following sequence: ..., -429, -478, -520, -577, -600, -666, -759, -835, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | null | 8 | 8 | 7 | monotonic_decrease_random starts with 2 |
af50a5f1 | previous | arithmetic | Consider the following sequence: ..., 79, 89, 99, 109, 119, 129, 139, 149, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 69 | 8 | 7 | 6 | 9 + 10 * x |
fa6ccd41 | next | fibonacci | Consider the following sequence: 0, 2, 2, 4, 6, 10, 16, 26, ...
What is the next number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 42 | 8 | 0 | 8 | f(0) = 0; f(1) = 2 ;f(n) = f(n-1) + n(n-1) |
790d9fbc | next | quadratic | Consider the following sequence: 9, 10, 15, 24, 37, ...
What is the next number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 54 | 5 | 0 | 5 | 2 * x ** 2 + -1 * x + 9 |
10f7f5ab | previous | quadratic | Consider the following sequence: ..., 47, 70, 97, 128, 163, 202, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 28 | 6 | 6 | 5 | 2 * x ** 2 + -3 * x + -7 |
d60223a8 | previous | arithmetic | Consider the following sequence: ..., 51, 61, 71, 81, 91, 101, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 41 | 6 | 5 | 4 | 1 + 10 * x |
cf43dd0d | nth | quadratic | Consider the following sequence: 4, 8, 18, 34, 56, 84, ...
What is the 20th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 1,106 | 6 | 0 | 19 | 3 * x ** 2 + 1 * x + 4 |
45a0cbca | nth | geometric | Consider the following sequence: 4, 20, 100, 500, 2500, 12500, 62500, ...
What is the 9th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 1,562,500 | 7 | 0 | 8 | 4 * 5 ** x |
aa713666 | nth | fibonacci | Consider the following sequence: 5, 1, 6, 7, 13, 20, 33, ...
What is the 20th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 17,101 | 7 | 0 | 19 | f(0) = 5; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
a7fb17ea | nth | arithmetic | Consider the following sequence: 2, 12, 22, 32, 42, 52, 62, ...
What is the 14th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 132 | 7 | 0 | 13 | 2 + 10 * x |
08803976 | nth | triangular | Consider the following sequence: 1, 3, 6, 10, 15, 21, ...
What is the 14th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 105 | 6 | 1 | 14 | x * (x+1) / 2 |
d036c51e | previous | fibonacci | Consider the following sequence: ..., 39, 63, 102, 165, 267, 432, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 24 | 6 | 6 | 5 | f(0) = 3; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
7c55c5c6 | nth | arithmetic | Consider the following sequence: 5, 13, 21, 29, 37, 45, ...
What is the 27th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 213 | 6 | 0 | 26 | 5 + 8 * x |
1537118a | nth | prime | Consider the following sequence: 2, 3, 5, 7, 11, 13, ...
What is the 11th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 31 | 6 | 0 | 10 | prime |
5eb36b3c | nth | quadratic | Consider the following sequence: 5, 10, 21, 38, 61, 90, 125, 166, ...
What is the 18th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 906 | 8 | 0 | 17 | 3 * x ** 2 + 2 * x + 5 |
e15009ac | nth | monotonic_random | Consider the following sequence: 4, -31, -96, -124, -177, -185, -257, -356, ...
What is the 20th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | null | 8 | 1 | 20 | monotonic_decrease_random starts with 4 |
bec45939 | nth | quadratic | Consider the following sequence: -1, -3, 1, 11, 27, 49, 77, 111, ...
What is the 15th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 517 | 8 | 0 | 14 | 3 * x ** 2 + -5 * x + -1 |
7cf6d122 | previous | quadratic | Consider the following sequence: ..., 66, 84, 104, 126, 150, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 50 | 5 | 7 | 6 | 1 * x ** 2 + 3 * x + -4 |
5d8242ab | previous | fibonacci | Consider the following sequence: ..., 73, 118, 191, 309, 500, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 45 | 5 | 8 | 7 | f(0) = 4; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
0da1eebf | previous | geometric | Consider the following sequence: ..., 3072, 12288, 49152, 196608, 786432, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 768 | 5 | 5 | 4 | 3 * 4 ** x |
6ac6bf0a | nth | fibonacci | Consider the following sequence: 2, 4, 6, 10, 16, 26, ...
What is the 15th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 1,974 | 6 | 0 | 14 | f(0) = 2; f(1) = 4 ;f(n) = f(n-1) + n(n-1) |
d0c9f9f0 | next | quadratic | Consider the following sequence: 6, 2, 0, 0, 2, ...
What is the next number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 6 | 5 | 0 | 5 | 1 * x ** 2 + -5 * x + 6 |
cd9cfb8f | nth | fibonacci | Consider the following sequence: 2, 1, 3, 4, 7, 11, ...
What is the 17th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 2,207 | 6 | 0 | 16 | f(0) = 2; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
4a2c5e57 | next | quadratic | Consider the following sequence: 2, 0, 2, 8, 18, 32, 50, 72, ...
What is the next number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 98 | 8 | 0 | 8 | 2 * x ** 2 + -4 * x + 2 |
5d25f14b | previous | fibonacci | Consider the following sequence: ..., 11, 18, 29, 47, 76, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 7 | 5 | 5 | 4 | f(0) = 2; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
5bfeeb20 | previous | arithmetic | Consider the following sequence: ..., 41, 45, 49, 53, 57, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 37 | 5 | 8 | 7 | 9 + 4 * x |
844da045 | previous | quadratic | Consider the following sequence: ..., 101, 131, 165, 203, 245, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 75 | 5 | 7 | 6 | 2 * x ** 2 + 0 * x + 3 |
f4e0ba2a | nth | triangular | Consider the following sequence: 1, 3, 6, 10, 15, ...
What is the 9th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 45 | 5 | 1 | 9 | x * (x+1) / 2 |
55eb4c96 | previous | power | Consider the following sequence: ..., 16384, 65536, 262144, 1048576, 4194304, 16777216, 67108864, 268435456, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 4,096 | 8 | 7 | 6 | 4 ** x |
47d9e69e | nth | arithmetic | Consider the following sequence: 7, 14, 21, 28, 35, ...
What is the 20th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 140 | 5 | 0 | 19 | 7 + 7 * x |
758574ee | previous | quadratic | Consider the following sequence: ..., 53, 69, 87, 107, 129, 153, 179, 207, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 39 | 8 | 7 | 6 | 1 * x ** 2 + 1 * x + -3 |
3ab2152e | previous | geometric | Consider the following sequence: ..., 1458, 4374, 13122, 39366, 118098, 354294, 1062882, 3188646, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 486 | 8 | 6 | 5 | 2 * 3 ** x |
af3fcf6b | nth | arithmetic | Consider the following sequence: 5, 13, 21, 29, 37, 45, 53, ...
What is the 18th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 141 | 7 | 0 | 17 | 5 + 8 * x |
0787722f | next | fibonacci | Consider the following sequence: 2, 5, 7, 12, 19, 31, 50, 81, ...
What is the next number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 131 | 8 | 0 | 8 | f(0) = 2; f(1) = 5 ;f(n) = f(n-1) + n(n-1) |
f69aaa63 | nth | arithmetic | Consider the following sequence: 4, 14, 24, 34, 44, 54, 64, 74, ...
What is the 26th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 254 | 8 | 0 | 25 | 4 + 10 * x |
5642b86f | previous | fibonacci | Consider the following sequence: ..., 33, 53, 86, 139, 225, 364, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 20 | 6 | 6 | 5 | f(0) = 5; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
41b3830d | nth | monotonic_random | Consider the following sequence: 10, 29, 67, 134, 222, 249, 328, 420, ...
What is the 9th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | null | 8 | 1 | 9 | monotonic_increase_random starts with 10 |
57a45d4b | nth | prime | Consider the following sequence: 2, 3, 5, 7, 11, 13, ...
What is the 9th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 23 | 6 | 0 | 8 | prime |
637e9ca6 | nth | monotonic_random | Consider the following sequence: 10, -35, -117, -189, -218, -263, ...
What is the 8th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | null | 6 | 1 | 8 | monotonic_decrease_random starts with 10 |
d455725a | next | monotonic_random | Consider the following sequence: 2, 38, 61, 95, 168, 182, 199, 266, ...
What is the next number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | null | 8 | 1 | 9 | monotonic_increase_random starts with 2 |
5701402d | next | quadratic | Consider the following sequence: -4, -5, -4, -1, 4, ...
What is the next number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 11 | 5 | 0 | 5 | 1 * x ** 2 + -2 * x + -4 |
022ca7b0 | next | monotonic_random | Consider the following sequence: 3, 2, -40, -50, -57, -75, -141, -198, ...
What is the next number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | null | 8 | 1 | 9 | monotonic_decrease_random starts with 3 |
3ef73e04 | nth | arithmetic | Consider the following sequence: 8, 15, 22, 29, 36, 43, 50, 57, ...
What is the 15th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 106 | 8 | 0 | 14 | 8 + 7 * x |
e0852026 | previous | monotonic_random | Consider the following sequence: ..., -315, -340, -341, -417, -457, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | null | 5 | 8 | 7 | monotonic_decrease_random starts with 4 |
cc5b54fc | previous | arithmetic | Consider the following sequence: ..., 62, 71, 80, 89, 98, 107, 116, 125, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 53 | 8 | 6 | 5 | 8 + 9 * x |
15d81834 | next | fibonacci | Consider the following sequence: 0, 4, 4, 8, 12, ...
What is the next number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 20 | 5 | 0 | 5 | f(0) = 0; f(1) = 4 ;f(n) = f(n-1) + n(n-1) |
4609b89a | nth | arithmetic | Consider the following sequence: 1, 8, 15, 22, 29, ...
What is the 23th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 155 | 5 | 0 | 22 | 1 + 7 * x |
7b71cf61 | previous | monotonic_random | Consider the following sequence: ..., 412, 510, 575, 594, 688, 723, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | null | 6 | 9 | 8 | monotonic_increase_random starts with 6 |
5b2ff61b | previous | fibonacci | Consider the following sequence: ..., 53, 86, 139, 225, 364, 589, 953, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 33 | 7 | 7 | 6 | f(0) = 5; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
1dbeb804 | nth | fibonacci | Consider the following sequence: 4, 1, 5, 6, 11, 17, ...
What is the 19th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 8,972 | 6 | 0 | 18 | f(0) = 4; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
a37260b0 | nth | quadratic | Consider the following sequence: -4, 4, 18, 38, 64, 96, ...
What is the 11th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 346 | 6 | 0 | 10 | 3 * x ** 2 + 5 * x + -4 |
9bedcf2f | nth | arithmetic | Consider the following sequence: 5, 9, 13, 17, 21, 25, 29, ...
What is the 12th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 49 | 7 | 0 | 11 | 5 + 4 * x |
706d070a | nth | monotonic_random | Consider the following sequence: 7, -18, -53, -79, -102, -140, ...
What is the 7th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | null | 6 | 1 | 7 | monotonic_decrease_random starts with 7 |
7e55643e | nth | monotonic_random | Consider the following sequence: 3, 30, 120, 176, 221, 304, ...
What is the 14th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | null | 6 | 1 | 14 | monotonic_increase_random starts with 3 |
a1dcbc47 | nth | fibonacci | Consider the following sequence: 4, 3, 7, 10, 17, 27, 44, ...
What is the 17th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 5,401 | 7 | 0 | 16 | f(0) = 4; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
a169c506 | previous | power | Consider the following sequence: ..., 32, 64, 128, 256, 512, 1024, 2048, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 16 | 7 | 5 | 4 | 2 ** x |
0b6ba97a | nth | power | Consider the following sequence: 1, 4, 16, 64, 256, 1024, 4096, ...
What is the 9th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 65,536 | 7 | 0 | 8 | 4 ** x |
186693af | nth | fibonacci | Consider the following sequence: 2, 2, 4, 6, 10, 16, 26, 42, ...
What is the 17th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 3,194 | 8 | 0 | 16 | f(0) = 2; f(1) = 2 ;f(n) = f(n-1) + n(n-1) |
5db01084 | previous | monotonic_random | Consider the following sequence: ..., 457, 544, 596, 635, 641, 671, 769, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | null | 7 | 9 | 8 | monotonic_increase_random starts with 7 |
3e85bac6 | next | monotonic_random | Consider the following sequence: 3, 42, 119, 209, 277, 303, ...
What is the next number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | null | 6 | 1 | 7 | monotonic_increase_random starts with 3 |
806440cc | next | quadratic | Consider the following sequence: -8, -7, -2, 7, 20, 37, ...
What is the next number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 58 | 6 | 0 | 6 | 2 * x ** 2 + -1 * x + -8 |
44472c3d | next | quadratic | Consider the following sequence: -3, -5, -3, 3, 13, 27, ...
What is the next number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 45 | 6 | 0 | 6 | 2 * x ** 2 + -4 * x + -3 |
79b14b54 | nth | alternating | Consider the following sequence: -1, 2, -3, 4, -5, ...
What is the 13th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | -13 | 5 | 1 | 13 | (-1) ** x * x |
6494ba90 | nth | fibonacci | Consider the following sequence: 0, 4, 4, 8, 12, 20, 32, 52, ...
What is the 20th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 16,724 | 8 | 0 | 19 | f(0) = 0; f(1) = 4 ;f(n) = f(n-1) + n(n-1) |
313305ad | nth | quadratic | Consider the following sequence: 4, 8, 18, 34, 56, 84, ...
What is the 19th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 994 | 6 | 0 | 18 | 3 * x ** 2 + 1 * x + 4 |
fd790f75 | nth | geometric | Consider the following sequence: 2, 8, 32, 128, 512, 2048, ...
What is the 13th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 33,554,432 | 6 | 0 | 12 | 2 * 4 ** x |
dcc503a3 | next | monotonic_random | Consider the following sequence: 4, 27, 126, 157, 205, 252, ...
What is the next number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | null | 6 | 1 | 7 | monotonic_increase_random starts with 4 |
056f547a | nth | fibonacci | Consider the following sequence: 4, 4, 8, 12, 20, ...
What is the 8th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 84 | 5 | 0 | 7 | f(0) = 4; f(1) = 4 ;f(n) = f(n-1) + n(n-1) |
95c68844 | nth | arithmetic | Consider the following sequence: 10, 16, 22, 28, 34, 40, ...
What is the 23th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 142 | 6 | 0 | 22 | 10 + 6 * x |
2db4687b | previous | monotonic_random | Consider the following sequence: ..., -233, -280, -287, -364, -452, -500, -533, ...
What is the previous number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | null | 7 | 7 | 6 | monotonic_decrease_random starts with 8 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.