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 |
|---|---|---|---|---|---|---|---|---|
b3a2938d | next | monotonic_random | Consider the following sequence: 6, 75, 170, 221, 253, 276, ...
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 6 |
842eed33 | nth | geometric | Consider the following sequence: 3, 6, 12, 24, 48, 96, ...
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" | 384 | 6 | 0 | 7 | 3 * 2 ** x |
120813f3 | nth | power | Consider the following sequence: 1, 2, 4, 8, 16, 32, ...
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" | 1,024 | 6 | 0 | 10 | 2 ** x |
4425ca13 | nth | geometric | Consider the following sequence: 1, 3, 9, 27, 81, 243, 729, ...
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" | 177,147 | 7 | 0 | 11 | 1 * 3 ** x |
6c82c3d6 | previous | monotonic_random | Consider the following sequence: ..., 320, 348, 446, 502, 538, 634, 723, 823, ...
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 | 7 | 6 | monotonic_increase_random starts with 9 |
e7783d47 | next | quadratic | Consider the following sequence: -6, 1, 12, 27, 46, 69, 96, ...
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" | 127 | 7 | 0 | 7 | 2 * x ** 2 + 5 * x + -6 |
2261b290 | next | quadratic | Consider the following sequence: -3, -2, 1, 6, 13, ...
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" | 22 | 5 | 0 | 5 | 1 * x ** 2 + 0 * x + -3 |
bec7b15d | nth | monotonic_random | Consider the following sequence: 10, 86, 140, 222, 299, 342, ...
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" | null | 6 | 1 | 15 | monotonic_increase_random starts with 10 |
ce028e5c | previous | fibonacci | Consider the following sequence: ..., 24, 39, 63, 102, 165, 267, 432, 699, ...
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" | 15 | 8 | 5 | 4 | f(0) = 3; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
71c49b73 | next | monotonic_random | Consider the following sequence: 8, 53, 64, 91, 187, 255, 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 | 7 | 1 | 8 | monotonic_increase_random starts with 8 |
baa2f330 | nth | monotonic_random | Consider the following sequence: 7, 10, 107, 144, 216, 312, 375, ...
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" | null | 7 | 1 | 10 | monotonic_increase_random starts with 7 |
6ec8825b | previous | fibonacci | Consider the following sequence: ..., 89, 144, 233, 377, 610, 987, 1597, 2584, ...
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" | 55 | 8 | 7 | 6 | f(0) = 3; f(1) = 5 ;f(n) = f(n-1) + n(n-1) |
fc3f1b31 | nth | quadratic | Consider the following sequence: 0, 2, 10, 24, 44, 70, 102, ...
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" | 850 | 7 | 0 | 17 | 3 * x ** 2 + -1 * x + 0 |
8abb039d | previous | fibonacci | Consider the following sequence: ..., 84, 136, 220, 356, 576, 932, 1508, 2440, ...
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" | 52 | 8 | 8 | 7 | f(0) = 0; f(1) = 4 ;f(n) = f(n-1) + n(n-1) |
7461f6c4 | previous | fibonacci | Consider the following sequence: ..., 157, 254, 411, 665, 1076, ...
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" | 97 | 5 | 8 | 7 | f(0) = 4; f(1) = 5 ;f(n) = f(n-1) + n(n-1) |
93a3639e | nth | arithmetic | Consider the following sequence: 10, 15, 20, 25, 30, 35, ...
What is the 25th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 130 | 6 | 0 | 24 | 10 + 5 * x |
2b79357e | previous | arithmetic | Consider the following sequence: ..., 58, 66, 74, 82, 90, 98, ...
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 | 6 | 6 | 5 | 10 + 8 * x |
833cd5ac | nth | fibonacci | Consider the following sequence: 0, 1, 1, 2, 3, 5, ...
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" | 610 | 6 | 0 | 15 | f(0) = 0; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
e49132be | nth | monotonic_random | Consider the following sequence: 4, 64, 129, 212, 227, 305, 348, 369, ...
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" | null | 8 | 1 | 10 | monotonic_increase_random starts with 4 |
224adaf9 | nth | power | Consider the following sequence: 1, 2, 4, 8, 16, ...
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" | 4,096 | 5 | 0 | 12 | 2 ** x |
ee9ef7b0 | nth | fibonacci | Consider the following sequence: 3, 3, 6, 9, 15, 24, ...
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" | 165 | 6 | 0 | 9 | f(0) = 3; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
221f2e25 | nth | quadratic | Consider the following sequence: 4, 5, 10, 19, 32, 49, 70, ...
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" | 707 | 7 | 0 | 19 | 2 * x ** 2 + -1 * x + 4 |
77970631 | next | monotonic_random | Consider the following sequence: 3, -34, -38, -67, -115, -188, ...
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_decrease_random starts with 3 |
3650a655 | previous | quadratic | Consider the following sequence: ..., 85, 112, 143, 178, 217, ...
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" | 62 | 5 | 7 | 6 | 2 * x ** 2 + -3 * x + 8 |
91d510c8 | next | monotonic_random | Consider the following sequence: 6, 82, 147, 188, 255, 303, 352, ...
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 | 7 | 1 | 8 | monotonic_increase_random starts with 6 |
f053a1f4 | next | quadratic | Consider the following sequence: 9, 9, 11, 15, 21, ...
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" | 29 | 5 | 0 | 5 | 1 * x ** 2 + -1 * x + 9 |
ffd1a728 | nth | quadratic | Consider the following sequence: 8, 12, 20, 32, 48, ...
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" | 692 | 5 | 0 | 18 | 2 * x ** 2 + 2 * x + 8 |
f134a14f | nth | geometric | Consider the following sequence: 5, 10, 20, 40, 80, 160, 320, ...
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,280 | 7 | 0 | 8 | 5 * 2 ** x |
c361ce78 | nth | arithmetic | Consider the following sequence: 10, 20, 30, 40, 50, 60, ...
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" | 140 | 6 | 0 | 13 | 10 + 10 * x |
40b3b39d | previous | quadratic | Consider the following sequence: ..., 156, 203, 256, 315, 380, ...
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" | 115 | 5 | 7 | 6 | 3 * x ** 2 + 2 * x + -5 |
65e200a8 | nth | alternating | Consider the following sequence: -1, 2, -3, 4, -5, ...
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" | -17 | 5 | 1 | 17 | (-1) ** x * x |
441a78cc | previous | quadratic | Consider the following sequence: ..., 16, 24, 34, 46, 60, 76, 94, ...
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" | 10 | 7 | 5 | 4 | 1 * x ** 2 + -3 * x + 6 |
8b41b1a9 | next | quadratic | Consider the following sequence: 8, 13, 20, 29, 40, 53, 68, 85, ...
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" | 104 | 8 | 0 | 8 | 1 * x ** 2 + 4 * x + 8 |
48f3359a | nth | geometric | Consider the following sequence: 2, 4, 8, 16, 32, 64, ...
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" | 16,384 | 6 | 0 | 13 | 2 * 2 ** x |
74d04aa8 | previous | geometric | Consider the following sequence: ..., 972, 2916, 8748, 26244, 78732, 236196, 708588, 2125764, ...
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" | 324 | 8 | 5 | 4 | 4 * 3 ** x |
f3b11dfe | nth | fibonacci | Consider the following sequence: 4, 4, 8, 12, 20, 32, 52, ...
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" | 10,336 | 7 | 0 | 17 | f(0) = 4; f(1) = 4 ;f(n) = f(n-1) + n(n-1) |
5513ee79 | nth | alternating | Consider the following sequence: -1, 2, -3, 4, -5, 6, -7, 8, ...
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" | -11 | 8 | 1 | 11 | (-1) ** x * x |
b9cf4f89 | nth | triangular | Consider the following sequence: 1, 3, 6, 10, 15, 21, 28, ...
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" | 190 | 7 | 1 | 19 | x * (x+1) / 2 |
5985f798 | nth | prime | Consider the following sequence: 2, 3, 5, 7, 11, 13, 17, ...
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" | 43 | 7 | 0 | 13 | prime |
e15b99b3 | nth | monotonic_random | Consider the following sequence: 7, -45, -53, -106, -152, -235, -253, ...
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 | 7 | 1 | 14 | monotonic_decrease_random starts with 7 |
30938674 | previous | arithmetic | Consider the following sequence: ..., 70, 79, 88, 97, 106, 115, ...
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" | 61 | 6 | 7 | 6 | 7 + 9 * x |
debc6e08 | previous | monotonic_random | Consider the following sequence: ..., -280, -337, -374, -389, -450, -468, -564, ...
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 7 |
428a3ba3 | nth | quadratic | Consider the following sequence: -2, 4, 16, 34, 58, 88, 124, ...
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" | 1,024 | 7 | 0 | 18 | 3 * x ** 2 + 3 * x + -2 |
87b62411 | next | arithmetic | Consider the following sequence: 2, 9, 16, 23, 30, 37, 44, ...
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" | 51 | 7 | 0 | 7 | 2 + 7 * x |
73ebfdcd | nth | prime | Consider the following sequence: 2, 3, 5, 7, 11, 13, ...
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" | 43 | 6 | 0 | 13 | prime |
557f58d6 | previous | arithmetic | Consider the following sequence: ..., 51, 61, 71, 81, 91, 101, 111, ...
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 | 7 | 5 | 4 | 1 + 10 * x |
c9c0db7a | nth | monotonic_random | Consider the following sequence: 1, 43, 112, 175, 212, 286, 329, 411, ...
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" | null | 8 | 1 | 18 | monotonic_increase_random starts with 1 |
81587e7d | next | quadratic | Consider the following sequence: -2, 2, 12, 28, 50, 78, 112, 152, ...
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" | 198 | 8 | 0 | 8 | 3 * x ** 2 + 1 * x + -2 |
b3168bd1 | previous | power | Consider the following sequence: ..., 65536, 262144, 1048576, 4194304, 16777216, ...
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,384 | 5 | 8 | 7 | 4 ** x |
6d8a54f9 | next | arithmetic | Consider the following sequence: 4, 11, 18, 25, 32, 39, 46, 53, ...
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" | 60 | 8 | 0 | 8 | 4 + 7 * x |
f84a5dae | nth | fibonacci | Consider the following sequence: 1, 5, 6, 11, 17, 28, 45, ...
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" | 3,427 | 7 | 0 | 15 | f(0) = 1; f(1) = 5 ;f(n) = f(n-1) + n(n-1) |
9fdb9545 | next | monotonic_random | Consider the following sequence: 4, 31, 71, 95, 108, 112, 181, ...
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 | 7 | 1 | 8 | monotonic_increase_random starts with 4 |
c99bc9e0 | nth | fibonacci | Consider the following sequence: 2, 2, 4, 6, 10, 16, ...
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,362 | 6 | 0 | 18 | f(0) = 2; f(1) = 2 ;f(n) = f(n-1) + n(n-1) |
444a7c97 | nth | arithmetic | Consider the following sequence: 4, 12, 20, 28, 36, ...
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" | 156 | 5 | 0 | 19 | 4 + 8 * x |
dc8ddf02 | next | quadratic | Consider the following sequence: 1, 7, 17, 31, 49, 71, 97, ...
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" | 127 | 7 | 0 | 7 | 2 * x ** 2 + 4 * x + 1 |
059bdc74 | nth | alternating | Consider the following sequence: -1, 2, -3, 4, -5, 6, -7, 8, ...
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 | 8 | 1 | 13 | (-1) ** x * x |
6c91b18e | next | arithmetic | Consider the following sequence: 7, 15, 23, 31, 39, 47, 55, 63, ...
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" | 71 | 8 | 0 | 8 | 7 + 8 * x |
0bc16994 | nth | geometric | Consider the following sequence: 3, 12, 48, 192, 768, ...
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" | 12,582,912 | 5 | 0 | 11 | 3 * 4 ** x |
e3af6949 | next | arithmetic | Consider the following sequence: 4, 8, 12, 16, 20, ...
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" | 24 | 5 | 0 | 5 | 4 + 4 * x |
14a1a35d | previous | fibonacci | Consider the following sequence: ..., 13, 21, 34, 55, 89, 144, 233, 377, ...
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" | 8 | 8 | 5 | 4 | f(0) = 1; f(1) = 2 ;f(n) = f(n-1) + n(n-1) |
64d6cbd8 | previous | arithmetic | Consider the following sequence: ..., 52, 58, 64, 70, 76, 82, 88, ...
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" | 46 | 7 | 8 | 7 | 4 + 6 * x |
65ab2402 | nth | fibonacci | Consider the following sequence: 1, 2, 3, 5, 8, 13, ...
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" | 4,181 | 6 | 0 | 17 | f(0) = 1; f(1) = 2 ;f(n) = f(n-1) + n(n-1) |
ac869f8e | nth | fibonacci | Consider the following sequence: 0, 2, 2, 4, 6, ...
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" | 288 | 5 | 0 | 12 | f(0) = 0; f(1) = 2 ;f(n) = f(n-1) + n(n-1) |
337990fd | nth | quadratic | Consider the following sequence: 1, 8, 19, 34, 53, 76, 103, ...
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" | 593 | 7 | 0 | 16 | 2 * x ** 2 + 5 * x + 1 |
c4790e75 | previous | arithmetic | Consider the following sequence: ..., 67, 75, 83, 91, 99, ...
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" | 59 | 5 | 8 | 7 | 3 + 8 * x |
4250c818 | previous | monotonic_random | Consider the following sequence: ..., -155, -170, -231, -291, -345, -414, -471, -489, ...
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 9 |
af529031 | nth | fibonacci | Consider the following sequence: 5, 5, 10, 15, 25, 40, 65, ...
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" | 7,985 | 7 | 0 | 16 | f(0) = 5; f(1) = 5 ;f(n) = f(n-1) + n(n-1) |
8a630745 | nth | geometric | Consider the following sequence: 4, 12, 36, 108, 324, 972, ...
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" | 78,732 | 6 | 0 | 9 | 4 * 3 ** x |
25e89c91 | previous | quadratic | Consider the following sequence: ..., 7, 14, 23, 34, 47, 62, 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" | 2 | 7 | 5 | 4 | 1 * x ** 2 + -4 * x + 2 |
84a53fab | next | quadratic | Consider the following sequence: -1, -2, 1, 8, 19, 34, 53, ...
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" | 76 | 7 | 0 | 7 | 2 * x ** 2 + -3 * x + -1 |
312b6b03 | next | quadratic | Consider the following sequence: 10, 8, 8, 10, 14, ...
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 | 1 * x ** 2 + -3 * x + 10 |
af321758 | next | quadratic | Consider the following sequence: -10, -8, -2, 8, 22, 40, 62, 88, ...
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" | 118 | 8 | 0 | 8 | 2 * x ** 2 + 0 * x + -10 |
96f77122 | nth | monotonic_random | Consider the following sequence: 8, 67, 147, 181, 251, 308, 324, 420, ...
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" | null | 8 | 1 | 19 | monotonic_increase_random starts with 8 |
4bd1a6b0 | previous | power | Consider the following sequence: ..., 32, 64, 128, 256, 512, 1024, ...
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 | 6 | 5 | 4 | 2 ** x |
02b795fa | nth | quadratic | Consider the following sequence: 7, 4, 3, 4, 7, 12, 19, ...
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" | 52 | 7 | 0 | 9 | 1 * x ** 2 + -4 * x + 7 |
2ed9b1ac | previous | power | Consider the following sequence: ..., 729, 2187, 6561, 19683, 59049, 177147, ...
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" | 243 | 6 | 6 | 5 | 3 ** x |
dcacc198 | next | arithmetic | Consider the following sequence: 6, 16, 26, 36, 46, 56, ...
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" | 66 | 6 | 0 | 6 | 6 + 10 * x |
fb7bcd69 | previous | monotonic_random | Consider the following sequence: ..., -364, -386, -434, -455, -468, -556, -578, -660, ...
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 | 7 | 6 | monotonic_decrease_random starts with 9 |
87aefe91 | previous | monotonic_random | Consider the following sequence: ..., -352, -373, -456, -510, -561, -637, ...
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_decrease_random starts with 2 |
1c4e3ee6 | previous | geometric | Consider the following sequence: ..., 32805, 98415, 295245, 885735, 2657205, 7971615, ...
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" | 10,935 | 6 | 8 | 7 | 5 * 3 ** x |
79b2fab1 | previous | fibonacci | Consider the following sequence: ..., 21, 34, 55, 89, 144, ...
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" | 13 | 5 | 5 | 4 | f(0) = 2; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
e441d617 | nth | monotonic_random | Consider the following sequence: 4, 43, 59, 129, 225, 304, ...
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" | null | 6 | 1 | 18 | monotonic_increase_random starts with 4 |
522d9569 | previous | arithmetic | Consider the following sequence: ..., 44, 50, 56, 62, 68, 74, 80, ...
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" | 38 | 7 | 7 | 6 | 2 + 6 * x |
96308df0 | nth | triangular | Consider the following sequence: 1, 3, 6, 10, 15, ...
What is the 6th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 21 | 5 | 1 | 6 | x * (x+1) / 2 |
3a10656c | nth | monotonic_random | Consider the following sequence: 5, -95, -186, -249, -321, ...
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" | null | 5 | 1 | 18 | monotonic_decrease_random starts with 5 |
e057dafc | nth | quadratic | Consider the following sequence: 9, 17, 31, 51, 77, 109, 147, 191, ...
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" | 667 | 8 | 0 | 14 | 3 * x ** 2 + 5 * x + 9 |
4c272d74 | nth | arithmetic | Consider the following sequence: 8, 17, 26, 35, 44, ...
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" | 161 | 5 | 0 | 17 | 8 + 9 * x |
e27f5695 | previous | arithmetic | Consider the following sequence: ..., 30, 33, 36, 39, 42, 45, 48, ...
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" | 27 | 7 | 8 | 7 | 6 + 3 * x |
165887e6 | previous | arithmetic | Consider the following sequence: ..., 50, 56, 62, 68, 74, 80, 86, ...
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" | 44 | 7 | 7 | 6 | 8 + 6 * x |
f8bc2fd9 | previous | quadratic | Consider the following sequence: ..., 182, 232, 288, 350, 418, 492, 572, 658, ...
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" | 138 | 8 | 7 | 6 | 3 * x ** 2 + 5 * x + 0 |
3401fb2a | nth | fibonacci | Consider the following sequence: 0, 3, 3, 6, 9, 15, 24, ...
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,961 | 7 | 0 | 16 | f(0) = 0; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
0d75e898 | nth | power | Consider the following sequence: 1, 5, 25, 125, 625, 3125, ...
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" | 244,140,625 | 6 | 0 | 12 | 5 ** x |
61d79100 | nth | quadratic | Consider the following sequence: 1, 6, 17, 34, 57, 86, 121, ...
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,122 | 7 | 0 | 19 | 3 * x ** 2 + 2 * x + 1 |
7e2120cc | previous | quadratic | Consider the following sequence: ..., 100, 129, 162, 199, 240, 285, 334, ...
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 | 7 | 6 | 5 | 2 * x ** 2 + 3 * x + 10 |
5ebcd08f | nth | quadratic | Consider the following sequence: 7, 6, 7, 10, 15, 22, ...
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" | 231 | 6 | 0 | 16 | 1 * x ** 2 + -2 * x + 7 |
b75e76a5 | previous | quadratic | Consider the following sequence: ..., 21, 32, 45, 60, 77, 96, 117, 140, ...
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 | 8 | 6 | 5 | 1 * x ** 2 + -2 * x + -3 |
4da3c484 | next | fibonacci | Consider the following sequence: 2, 2, 4, 6, 10, ...
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" | 16 | 5 | 0 | 5 | f(0) = 2; f(1) = 2 ;f(n) = f(n-1) + n(n-1) |
e14f71bb | nth | monotonic_random | Consider the following sequence: 8, -63, -136, -161, -214, -238, ...
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" | null | 6 | 1 | 12 | monotonic_decrease_random starts with 8 |
8f6bbcc9 | nth | fibonacci | Consider the following sequence: 5, 2, 7, 9, 16, 25, ...
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" | 66 | 6 | 0 | 7 | f(0) = 5; f(1) = 2 ;f(n) = f(n-1) + n(n-1) |
95192248 | nth | monotonic_random | Consider the following sequence: 8, 17, 39, 42, 114, 172, 244, ...
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" | null | 7 | 1 | 19 | monotonic_increase_random starts with 8 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.