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 |
|---|---|---|---|---|---|---|---|---|
a1130536 | previous | monotonic_random | Consider the following sequence: ..., -256, -278, -326, -347, -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" | null | 5 | 6 | 5 | monotonic_decrease_random starts with 2 |
6a0776d2 | next | quadratic | Consider the following sequence: 2, 4, 10, 20, 34, 52, ...
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" | 74 | 6 | 0 | 6 | 2 * x ** 2 + 0 * x + 2 |
6a91c176 | next | fibonacci | Consider the following sequence: 4, 4, 8, 12, 20, 32, ...
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" | 52 | 6 | 0 | 6 | f(0) = 4; f(1) = 4 ;f(n) = f(n-1) + n(n-1) |
ef72fa4f | next | fibonacci | Consider the following sequence: 4, 1, 5, 6, 11, 17, 28, 45, ...
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" | 73 | 8 | 0 | 8 | f(0) = 4; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
b21efdc1 | nth | geometric | Consider the following sequence: 3, 12, 48, 192, 768, 3072, 12288, ...
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" | 196,608 | 7 | 0 | 8 | 3 * 4 ** x |
560df302 | nth | alternating | Consider the following sequence: -1, 2, -3, 4, -5, ...
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 | 5 | 1 | 11 | (-1) ** x * x |
45759858 | nth | quadratic | Consider the following sequence: 9, 11, 19, 33, 53, 79, ...
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" | 503 | 6 | 0 | 13 | 3 * x ** 2 + -1 * x + 9 |
d7e0e1b2 | previous | prime | Consider the following sequence: ..., 17, 19, 23, 29, 31, 37, 41, 43, ...
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 | 8 | 6 | 5 | prime |
d587b084 | next | alternating | Consider the following sequence: -1, 2, -3, 4, -5, 6, ...
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" | -7 | 6 | 1 | 7 | (-1) ** x * x |
911f1088 | nth | arithmetic | Consider the following sequence: 1, 6, 11, 16, 21, 26, 31, ...
What is the 28th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 136 | 7 | 0 | 27 | 1 + 5 * x |
1cff90c7 | nth | arithmetic | Consider the following sequence: 1, 9, 17, 25, 33, 41, 49, ...
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" | 81 | 7 | 0 | 10 | 1 + 8 * x |
46ede74d | previous | quadratic | Consider the following sequence: ..., 47, 61, 77, 95, 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" | 35 | 5 | 6 | 5 | 1 * x ** 2 + 1 * x + 5 |
b5879c08 | previous | quadratic | Consider the following sequence: ..., 54, 76, 102, 132, 166, ...
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" | 36 | 5 | 5 | 4 | 2 * x ** 2 + 0 * x + 4 |
cdf8f9fe | previous | geometric | Consider the following sequence: ..., 320, 640, 1280, 2560, 5120, 10240, 20480, 40960, ...
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" | 160 | 8 | 6 | 5 | 5 * 2 ** x |
17a8bf35 | nth | quadratic | Consider the following sequence: 2, 4, 10, 20, 34, 52, 74, ...
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" | 290 | 7 | 0 | 12 | 2 * x ** 2 + 0 * x + 2 |
86e25c50 | nth | factorial | Consider the following sequence: 1, 2, 6, 24, 120, 720, ...
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" | 5,040 | 6 | 1 | 7 | x! |
4a610ae2 | next | quadratic | Consider the following sequence: -6, -7, -2, 9, 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" | 49 | 5 | 0 | 5 | 3 * x ** 2 + -4 * x + -6 |
12ff8625 | nth | fibonacci | Consider the following sequence: 3, 3, 6, 9, 15, 24, 39, 63, ...
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 | 8 | 0 | 9 | f(0) = 3; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
0c76a384 | next | geometric | Consider the following sequence: 3, 6, 12, 24, 48, 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" | 192 | 6 | 0 | 6 | 3 * 2 ** x |
eedc5553 | nth | quadratic | Consider the following sequence: -9, -4, 5, 18, 35, 56, 81, ...
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" | 266 | 7 | 0 | 11 | 2 * x ** 2 + 3 * x + -9 |
cf1aaba1 | next | fibonacci | Consider the following sequence: 3, 4, 7, 11, 18, 29, ...
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" | 47 | 6 | 0 | 6 | f(0) = 3; f(1) = 4 ;f(n) = f(n-1) + n(n-1) |
3ec8b3ff | nth | geometric | Consider the following sequence: 1, 3, 9, 27, 81, ...
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" | 243 | 5 | 0 | 5 | 1 * 3 ** x |
58b1575c | next | arithmetic | Consider the following sequence: 3, 8, 13, 18, 23, 28, 33, 38, ...
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" | 43 | 8 | 0 | 8 | 3 + 5 * x |
74500ba4 | next | fibonacci | Consider the following sequence: 2, 1, 3, 4, 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" | 11 | 5 | 0 | 5 | f(0) = 2; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
dc873b8d | nth | monotonic_random | Consider the following sequence: 7, -42, -130, -185, -208, -254, -282, -306, ...
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" | null | 8 | 1 | 17 | monotonic_decrease_random starts with 7 |
55416715 | nth | triangular | Consider the following sequence: 1, 3, 6, 10, 15, 21, ...
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" | 91 | 6 | 1 | 13 | x * (x+1) / 2 |
019a49be | previous | quadratic | Consider the following sequence: ..., 186, 235, 290, 351, 418, ...
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" | 143 | 5 | 8 | 7 | 3 * x ** 2 + -2 * x + 10 |
ecb159a6 | nth | prime | Consider the following sequence: 2, 3, 5, 7, 11, 13, 17, 19, ...
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 | 8 | 0 | 13 | prime |
a9ff7eb7 | previous | monotonic_random | Consider the following sequence: ..., -273, -309, -317, -378, -446, -492, ...
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 | 8 | 7 | monotonic_decrease_random starts with 6 |
3cd83d81 | nth | monotonic_random | Consider the following sequence: 6, 29, 52, 83, 159, 200, 295, ...
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 6 |
264f3bc1 | next | arithmetic | Consider the following sequence: 10, 15, 20, 25, 30, ...
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" | 35 | 5 | 0 | 5 | 10 + 5 * x |
6fd772c1 | next | monotonic_random | Consider the following sequence: 3, -20, -62, -70, -73, -92, -168, ...
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_decrease_random starts with 3 |
063947a8 | nth | triangular | Consider the following sequence: 1, 3, 6, 10, 15, 21, ...
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 | 6 | 1 | 9 | x * (x+1) / 2 |
9e684e06 | previous | power | Consider the following sequence: ..., 15625, 78125, 390625, 1953125, 9765625, 48828125, 244140625, ...
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" | 3,125 | 7 | 6 | 5 | 5 ** x |
91727d65 | previous | alternating | Consider the following sequence: ..., -7, 8, -9, 10, -11, 12, -13, ...
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" | 6 | 7 | 7 | 6 | (-1) ** x * x |
6d45137a | next | monotonic_random | Consider the following sequence: 7, -82, -120, -137, -160, ...
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 | 5 | 1 | 6 | monotonic_decrease_random starts with 7 |
27dce4c9 | next | geometric | Consider the following sequence: 3, 12, 48, 192, 768, 3072, ...
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" | 12,288 | 6 | 0 | 6 | 3 * 4 ** x |
4212edbc | previous | geometric | Consider the following sequence: ..., 234375, 1171875, 5859375, 29296875, 146484375, ...
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,875 | 5 | 7 | 6 | 3 * 5 ** x |
f27227ad | next | quadratic | Consider the following sequence: 1, 0, 5, 16, 33, 56, 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" | 120 | 7 | 0 | 7 | 3 * x ** 2 + -4 * x + 1 |
349f2514 | previous | monotonic_random | Consider the following sequence: ..., -93, -127, -141, -151, -195, -217, -266, -287, ...
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 | 6 | 5 | monotonic_decrease_random starts with 4 |
8c67460c | previous | power | Consider the following sequence: ..., 729, 2187, 6561, 19683, 59049, 177147, 531441, 1594323, ...
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 | 8 | 6 | 5 | 3 ** x |
901f5620 | next | arithmetic | Consider the following sequence: 6, 11, 16, 21, 26, 31, ...
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" | 36 | 6 | 0 | 6 | 6 + 5 * x |
080f97ea | previous | power | Consider the following sequence: ..., 16384, 65536, 262144, 1048576, 4194304, 16777216, 67108864, ...
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 | 7 | 7 | 6 | 4 ** x |
9a9e111e | next | quadratic | Consider the following sequence: 8, 10, 14, 20, 28, 38, 50, 64, ...
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" | 80 | 8 | 0 | 8 | 1 * x ** 2 + 1 * x + 8 |
ed28ff5f | next | fibonacci | Consider the following sequence: 2, 1, 3, 4, 7, 11, 18, 29, ...
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" | 47 | 8 | 0 | 8 | f(0) = 2; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
208bc092 | nth | geometric | Consider the following sequence: 5, 25, 125, 625, 3125, 15625, ...
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" | 390,625 | 6 | 0 | 7 | 5 * 5 ** x |
17aa9f52 | next | arithmetic | Consider the following sequence: 3, 9, 15, 21, 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" | 33 | 5 | 0 | 5 | 3 + 6 * x |
5a5c66c6 | nth | power | Consider the following sequence: 1, 5, 25, 125, 625, 3125, 15625, ...
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" | 390,625 | 7 | 0 | 8 | 5 ** x |
760a2c17 | nth | alternating | Consider the following sequence: -1, 2, -3, 4, -5, 6, ...
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 | 6 | 1 | 12 | (-1) ** x * x |
3501b4a0 | nth | power | Consider the following sequence: 1, 3, 9, 27, 81, 243, 729, 2187, ...
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" | 6,561 | 8 | 0 | 8 | 3 ** x |
b265992e | nth | triangular | Consider the following sequence: 1, 3, 6, 10, 15, 21, 28, 36, ...
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" | 91 | 8 | 1 | 13 | x * (x+1) / 2 |
06a8d8dc | nth | quadratic | Consider the following sequence: -6, -8, -4, 6, 22, ...
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" | 72 | 5 | 0 | 6 | 3 * x ** 2 + -5 * x + -6 |
fe2fa355 | nth | alternating | Consider the following sequence: -1, 2, -3, 4, -5, 6, -7, 8, ...
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" | 18 | 8 | 1 | 18 | (-1) ** x * x |
f8ef3f93 | nth | quadratic | Consider the following sequence: 2, 0, 2, 8, 18, ...
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" | 288 | 5 | 0 | 13 | 2 * x ** 2 + -4 * x + 2 |
ed847143 | previous | monotonic_random | Consider the following sequence: ..., 325, 353, 378, 395, 401, 456, 467, ...
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_increase_random starts with 10 |
ca917bf2 | next | geometric | Consider the following sequence: 4, 20, 100, 500, 2500, 12500, 62500, ...
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" | 312,500 | 7 | 0 | 7 | 4 * 5 ** x |
6a796ac5 | previous | monotonic_random | Consider the following sequence: ..., 439, 452, 466, 539, 639, 652, 689, 758, ...
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 | 9 | 8 | monotonic_increase_random starts with 9 |
2751aa0a | next | arithmetic | Consider the following sequence: 5, 13, 21, 29, 37, 45, ...
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" | 53 | 6 | 0 | 6 | 5 + 8 * x |
291eab12 | previous | monotonic_random | Consider the following sequence: ..., -403, -406, -450, -489, -529, -565, -628, ...
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_decrease_random starts with 7 |
982c6445 | nth | prime | Consider the following sequence: 2, 3, 5, 7, 11, 13, 17, 19, ...
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" | 61 | 8 | 0 | 17 | prime |
4e050d4e | next | geometric | Consider the following sequence: 4, 12, 36, 108, 324, 972, 2916, 8748, ...
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" | 26,244 | 8 | 0 | 8 | 4 * 3 ** x |
dbc496fd | next | quadratic | Consider the following sequence: -9, -10, -9, -6, -1, 6, 15, 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" | 39 | 8 | 0 | 8 | 1 * x ** 2 + -2 * x + -9 |
1182903b | nth | arithmetic | Consider the following sequence: 4, 10, 16, 22, 28, 34, 40, ...
What is the 22th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 130 | 7 | 0 | 21 | 4 + 6 * x |
5a10995d | nth | alternating | Consider the following sequence: -1, 2, -3, 4, -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" | 16 | 5 | 1 | 16 | (-1) ** x * x |
7d32b7b5 | next | arithmetic | Consider the following sequence: 6, 15, 24, 33, 42, 51, 60, 69, ...
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" | 78 | 8 | 0 | 8 | 6 + 9 * x |
084547a4 | nth | fibonacci | Consider the following sequence: 4, 5, 9, 14, 23, 37, 60, ...
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" | 1,076 | 7 | 0 | 12 | f(0) = 4; f(1) = 5 ;f(n) = f(n-1) + n(n-1) |
03215e42 | nth | fibonacci | Consider the following sequence: 5, 1, 6, 7, 13, 20, 33, ...
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" | 53 | 7 | 0 | 7 | f(0) = 5; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
3bbdf7dc | previous | quadratic | Consider the following sequence: ..., 100, 122, 146, 172, 200, 230, 262, ...
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" | 80 | 7 | 8 | 7 | 1 * x ** 2 + 5 * x + -4 |
0c80682b | next | monotonic_random | Consider the following sequence: 4, -36, -128, -219, -302, ...
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 | 5 | 1 | 6 | monotonic_decrease_random starts with 4 |
b74ec088 | previous | alternating | Consider the following sequence: ..., 8, -9, 10, -11, 12, -13, 14, ...
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 | 7 | 8 | 7 | (-1) ** x * x |
0b774409 | nth | geometric | Consider the following sequence: 3, 12, 48, 192, 768, 3072, 12288, ...
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 | 7 | 0 | 11 | 3 * 4 ** x |
3853822e | nth | monotonic_random | Consider the following sequence: 6, 99, 103, 187, 251, 289, 323, 377, ...
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 6 |
91934293 | previous | prime | Consider the following sequence: ..., 17, 19, 23, 29, 31, 37, 41, ...
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 | 7 | 6 | 5 | prime |
8040d156 | nth | geometric | Consider the following sequence: 2, 8, 32, 128, 512, 2048, ...
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" | 8,388,608 | 6 | 0 | 11 | 2 * 4 ** x |
358b9cf0 | next | geometric | Consider the following sequence: 3, 9, 27, 81, 243, 729, 2187, ...
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,561 | 7 | 0 | 7 | 3 * 3 ** x |
3aed63d8 | nth | power | Consider the following sequence: 1, 4, 16, 64, 256, 1024, 4096, ...
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" | 4,194,304 | 7 | 0 | 11 | 4 ** x |
ec77b9ba | previous | arithmetic | Consider the following sequence: ..., 28, 31, 34, 37, 40, 43, 46, 49, ...
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" | 25 | 8 | 6 | 5 | 10 + 3 * x |
5bdcd41c | nth | alternating | Consider the following sequence: -1, 2, -3, 4, -5, 6, -7, 8, ...
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" | -9 | 8 | 1 | 9 | (-1) ** x * x |
06e12d9b | next | fibonacci | Consider the following sequence: 1, 3, 4, 7, 11, 18, 29, 47, ...
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 | 8 | 0 | 8 | f(0) = 1; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
6e600137 | nth | monotonic_random | Consider the following sequence: 3, -89, -113, -213, -224, -287, ...
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_decrease_random starts with 3 |
d46b0efb | next | geometric | Consider the following sequence: 5, 25, 125, 625, 3125, 15625, 78125, 390625, ...
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" | 1,953,125 | 8 | 0 | 8 | 5 * 5 ** x |
931e337c | nth | power | Consider the following sequence: 1, 5, 25, 125, 625, 3125, 15625, 78125, ...
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" | 390,625 | 8 | 0 | 8 | 5 ** x |
9287c3dd | previous | arithmetic | Consider the following sequence: ..., 53, 60, 67, 74, 81, ...
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 | 5 | 7 | 6 | 4 + 7 * x |
ce0a890e | previous | arithmetic | Consider the following sequence: ..., 39, 44, 49, 54, 59, 64, 69, ...
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" | 34 | 7 | 7 | 6 | 4 + 5 * x |
26e75a2b | next | fibonacci | Consider the following sequence: 3, 5, 8, 13, 21, 34, 55, ...
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" | 89 | 7 | 0 | 7 | f(0) = 3; f(1) = 5 ;f(n) = f(n-1) + n(n-1) |
39bae288 | next | fibonacci | Consider the following sequence: 0, 3, 3, 6, 9, 15, 24, ...
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" | 39 | 7 | 0 | 7 | f(0) = 0; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
84a81542 | nth | fibonacci | Consider the following sequence: 3, 3, 6, 9, 15, 24, ...
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" | 102 | 6 | 0 | 8 | f(0) = 3; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
f14051db | next | fibonacci | Consider the following sequence: 5, 1, 6, 7, 13, 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" | 33 | 6 | 0 | 6 | f(0) = 5; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
144442c8 | nth | geometric | Consider the following sequence: 1, 5, 25, 125, 625, 3125, 15625, ...
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 | 7 | 0 | 7 | 1 * 5 ** x |
6f42d04b | next | monotonic_random | Consider the following sequence: 2, 5, 12, 101, 116, 170, 227, 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 | 8 | 1 | 9 | monotonic_increase_random starts with 2 |
ca407bfb | previous | geometric | Consider the following sequence: ..., 327680, 1310720, 5242880, 20971520, 83886080, 335544320, ...
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" | 81,920 | 6 | 8 | 7 | 5 * 4 ** x |
ac29c95f | previous | geometric | Consider the following sequence: ..., 160, 320, 640, 1280, 2560, 5120, 10240, ...
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" | 80 | 7 | 5 | 4 | 5 * 2 ** x |
0f7f9526 | nth | geometric | Consider the following sequence: 2, 6, 18, 54, 162, 486, 1458, ...
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" | 118,098 | 7 | 0 | 10 | 2 * 3 ** x |
290ffa18 | previous | arithmetic | Consider the following sequence: ..., 20, 23, 26, 29, 32, 35, 38, 41, ...
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" | 17 | 8 | 6 | 5 | 2 + 3 * x |
99a074a9 | previous | geometric | Consider the following sequence: ..., 64, 128, 256, 512, 1024, 2048, 4096, ...
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" | 32 | 7 | 6 | 5 | 1 * 2 ** x |
1f53c904 | next | arithmetic | Consider the following sequence: 3, 5, 7, 9, 11, 13, 15, ...
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" | 17 | 7 | 0 | 7 | 3 + 2 * x |
ee92a7c0 | nth | fibonacci | Consider the following sequence: 2, 4, 6, 10, 16, 26, 42, ...
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" | 13,530 | 7 | 0 | 18 | f(0) = 2; f(1) = 4 ;f(n) = f(n-1) + n(n-1) |
00509766 | nth | geometric | Consider the following sequence: 3, 9, 27, 81, 243, ...
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" | 531,441 | 5 | 0 | 11 | 3 * 3 ** x |
c3293d8e | nth | power | Consider the following sequence: 1, 4, 16, 64, 256, 1024, 4096, 16384, ...
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" | 67,108,864 | 8 | 0 | 13 | 4 ** x |
24149c65 | previous | fibonacci | Consider the following sequence: ..., 20, 33, 53, 86, 139, 225, ...
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 | 6 | 5 | 4 | f(0) = 5; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.