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 |
|---|---|---|---|---|---|---|---|---|
beaeec33 | nth | prime | Consider the following sequence: 2, 3, 5, 7, 11, 13, 17, 19, ...
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" | 53 | 8 | 0 | 15 | prime |
9c89a7da | nth | triangular | Consider the following sequence: 1, 3, 6, 10, 15, 21, 28, 36, ...
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" | 78 | 8 | 1 | 12 | x * (x+1) / 2 |
39606de3 | next | fibonacci | Consider the following sequence: 0, 1, 1, 2, 3, ...
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" | 5 | 5 | 0 | 5 | f(0) = 0; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
3aa849fe | previous | power | Consider the following sequence: ..., 16384, 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" | 4,096 | 6 | 7 | 6 | 4 ** x |
7e7e076b | previous | monotonic_random | Consider the following sequence: ..., 538, 623, 687, 750, 815, ...
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 | 9 | 8 | monotonic_increase_random starts with 2 |
0385247d | previous | fibonacci | Consider the following sequence: ..., 128, 207, 335, 542, 877, 1419, ...
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" | 79 | 6 | 8 | 7 | f(0) = 5; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
c2077b6c | nth | power | Consider the following sequence: 1, 5, 25, 125, 625, 3125, 15625, 78125, ...
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 | 8 | 0 | 12 | 5 ** x |
245956d8 | nth | prime | Consider the following sequence: 2, 3, 5, 7, 11, 13, 17, ...
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" | 19 | 7 | 0 | 7 | prime |
aaafc167 | previous | arithmetic | Consider the following sequence: ..., 29, 33, 37, 41, 45, 49, 53, ...
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 | 7 | 7 | 6 | 1 + 4 * x |
4af7523d | next | monotonic_random | Consider the following sequence: 6, -49, -94, -140, -193, -238, ...
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 6 |
18f267f6 | previous | arithmetic | Consider the following sequence: ..., 22, 24, 26, 28, 30, 32, 34, 36, ...
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 | 8 | 8 | 7 | 6 + 2 * x |
d3c64ff0 | previous | monotonic_random | Consider the following sequence: ..., -313, -387, -437, -479, -553, -566, -629, ...
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 |
a8919363 | nth | monotonic_random | Consider the following sequence: 6, 32, 96, 178, 188, 257, 285, ...
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 | 7 | 1 | 12 | monotonic_increase_random starts with 6 |
ea064c7b | previous | geometric | Consider the following sequence: ..., 78125, 390625, 1953125, 9765625, 48828125, 244140625, 1220703125, 6103515625, ...
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,625 | 8 | 6 | 5 | 5 * 5 ** x |
58b49cba | nth | alternating | Consider the following sequence: -1, 2, -3, 4, -5, 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" | -13 | 6 | 1 | 13 | (-1) ** x * x |
8f510c0d | nth | power | Consider the following sequence: 1, 5, 25, 125, 625, 3125, ...
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" | 15,625 | 6 | 0 | 6 | 5 ** x |
e2f9f034 | previous | quadratic | Consider the following sequence: ..., 83, 118, 159, 206, 259, 318, 383, 454, ...
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" | 54 | 8 | 5 | 4 | 3 * x ** 2 + 2 * x + -2 |
43d56b07 | nth | power | Consider the following sequence: 1, 4, 16, 64, 256, 1024, ...
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,048,576 | 6 | 0 | 10 | 4 ** x |
ab433019 | next | monotonic_random | Consider the following sequence: 7, -13, -38, -42, -74, -114, ...
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 7 |
70938996 | previous | arithmetic | Consider the following sequence: ..., 18, 20, 22, 24, 26, ...
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 | 5 | 5 | 4 | 8 + 2 * x |
a08ccc5e | nth | power | Consider the following sequence: 1, 2, 4, 8, 16, 32, 64, 128, ...
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" | 16,384 | 8 | 0 | 14 | 2 ** x |
a6c755a0 | next | fibonacci | Consider the following sequence: 0, 5, 5, 10, 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" | 25 | 5 | 0 | 5 | f(0) = 0; f(1) = 5 ;f(n) = f(n-1) + n(n-1) |
02176ded | next | geometric | Consider the following sequence: 5, 10, 20, 40, 80, 160, 320, ...
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" | 640 | 7 | 0 | 7 | 5 * 2 ** x |
8c9d889c | next | fibonacci | Consider the following sequence: 2, 4, 6, 10, 16, 26, 42, 68, ...
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" | 110 | 8 | 0 | 8 | f(0) = 2; f(1) = 4 ;f(n) = f(n-1) + n(n-1) |
d8725947 | nth | quadratic | Consider the following sequence: 5, 6, 9, 14, 21, 30, 41, ...
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" | 126 | 7 | 0 | 11 | 1 * x ** 2 + 0 * x + 5 |
61c472e9 | previous | arithmetic | Consider the following sequence: ..., 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" | 20 | 5 | 6 | 5 | 10 + 2 * x |
852b0658 | nth | triangular | Consider the following sequence: 1, 3, 6, 10, 15, ...
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" | 210 | 5 | 1 | 20 | x * (x+1) / 2 |
eac45036 | nth | quadratic | Consider the following sequence: 4, 2, 2, 4, 8, 14, 22, ...
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" | 308 | 7 | 0 | 19 | 1 * x ** 2 + -3 * x + 4 |
d49d2ebf | previous | power | Consider the following sequence: ..., 1024, 4096, 16384, 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" | 256 | 8 | 5 | 4 | 4 ** x |
81dacfdd | previous | arithmetic | Consider the following sequence: ..., 48, 57, 66, 75, 84, 93, ...
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 | 6 | 5 | 4 | 3 + 9 * x |
de2b0521 | next | monotonic_random | Consider the following sequence: 2, -65, -157, -256, -340, -438, -455, ...
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 2 |
aba4de3a | next | quadratic | Consider the following sequence: -5, -3, 3, 13, 27, 45, 67, 93, ...
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" | 123 | 8 | 0 | 8 | 2 * x ** 2 + 0 * x + -5 |
40552be6 | nth | monotonic_random | Consider the following sequence: 3, -45, -67, -140, -156, -158, -250, -318, ...
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 | 8 | 1 | 15 | monotonic_decrease_random starts with 3 |
9c80c10d | nth | fibonacci | Consider the following sequence: 1, 5, 6, 11, 17, 28, ...
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" | 23,489 | 6 | 0 | 19 | f(0) = 1; f(1) = 5 ;f(n) = f(n-1) + n(n-1) |
165537f8 | nth | fibonacci | Consider the following sequence: 1, 1, 2, 3, 5, 8, 13, ...
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" | 144 | 7 | 0 | 11 | f(0) = 1; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
d4852068 | previous | quadratic | Consider the following sequence: ..., 41, 61, 85, 113, 145, 181, 221, 265, ...
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 | 5 | 4 | 2 * x ** 2 + -2 * x + 1 |
4889e09c | nth | arithmetic | Consider the following sequence: 3, 10, 17, 24, 31, 38, 45, 52, ...
What is the 30th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 206 | 8 | 0 | 29 | 3 + 7 * x |
0e5afa19 | previous | quadratic | Consider the following sequence: ..., 64, 87, 114, 145, 180, 219, 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" | 45 | 7 | 5 | 4 | 2 * x ** 2 + 1 * x + 9 |
00967a08 | previous | power | Consider the following sequence: ..., 1024, 4096, 16384, 65536, 262144, 1048576, ...
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" | 256 | 6 | 5 | 4 | 4 ** x |
08b21d92 | next | monotonic_random | Consider the following sequence: 5, -59, -103, -163, -180, -192, -233, -324, ...
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 5 |
018d5a77 | nth | prime | Consider the following sequence: 2, 3, 5, 7, 11, 13, ...
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" | 37 | 6 | 0 | 11 | prime |
32ff9257 | next | arithmetic | Consider the following sequence: 3, 5, 7, 9, 11, 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" | 15 | 6 | 0 | 6 | 3 + 2 * x |
1c042ca4 | nth | arithmetic | Consider the following sequence: 6, 16, 26, 36, 46, 56, 66, 76, ...
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" | 226 | 8 | 0 | 22 | 6 + 10 * x |
cfab7ed2 | nth | geometric | Consider the following sequence: 1, 3, 9, 27, 81, 243, 729, ...
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" | 19,683 | 7 | 0 | 9 | 1 * 3 ** x |
c271aa29 | previous | fibonacci | Consider the following sequence: ..., 27, 44, 71, 115, 186, 301, ...
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 | 6 | 5 | 4 | f(0) = 4; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
2c2377d7 | nth | arithmetic | Consider the following sequence: 2, 10, 18, 26, 34, 42, 50, ...
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" | 202 | 7 | 0 | 25 | 2 + 8 * x |
4999a5fc | nth | geometric | Consider the following sequence: 2, 4, 8, 16, 32, ...
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" | 8,192 | 5 | 0 | 12 | 2 * 2 ** x |
1acecdce | nth | arithmetic | Consider the following sequence: 1, 10, 19, 28, 37, 46, 55, ...
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" | 226 | 7 | 0 | 25 | 1 + 9 * x |
13c2508a | previous | arithmetic | Consider the following sequence: ..., 52, 62, 72, 82, 92, 102, 112, 122, ...
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" | 42 | 8 | 5 | 4 | 2 + 10 * x |
22a31308 | nth | power | Consider the following sequence: 1, 3, 9, 27, 81, ...
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" | 19,683 | 5 | 0 | 9 | 3 ** x |
f107068e | nth | fibonacci | Consider the following sequence: 5, 1, 6, 7, 13, 20, 33, ...
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" | 2,495 | 7 | 0 | 15 | f(0) = 5; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
99f288f8 | nth | quadratic | Consider the following sequence: 5, 8, 15, 26, 41, 60, 83, ...
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" | 533 | 7 | 0 | 16 | 2 * x ** 2 + 1 * x + 5 |
0427a6b4 | nth | monotonic_random | Consider the following sequence: 2, 50, 129, 153, 209, ...
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 | 5 | 1 | 10 | monotonic_increase_random starts with 2 |
066b4240 | previous | arithmetic | Consider the following sequence: ..., 82, 92, 102, 112, 122, 132, 142, 152, ...
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" | 72 | 8 | 8 | 7 | 2 + 10 * x |
adbae0e1 | nth | geometric | Consider the following sequence: 5, 20, 80, 320, 1280, 5120, 20480, ...
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" | 20,971,520 | 7 | 0 | 11 | 5 * 4 ** x |
757ee456 | next | monotonic_random | Consider the following sequence: 9, -86, -171, -231, -254, -278, -329, ...
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 9 |
2614160b | nth | geometric | Consider the following sequence: 5, 10, 20, 40, 80, ...
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" | 10,240 | 5 | 0 | 11 | 5 * 2 ** x |
f3c43724 | next | geometric | Consider the following sequence: 2, 10, 50, 250, 1250, 6250, 31250, 156250, ...
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" | 781,250 | 8 | 0 | 8 | 2 * 5 ** x |
471f513d | nth | power | Consider the following sequence: 1, 2, 4, 8, 16, 32, ...
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" | 256 | 6 | 0 | 8 | 2 ** x |
63c2c9aa | next | arithmetic | Consider the following sequence: 2, 4, 6, 8, 10, 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" | 14 | 6 | 0 | 6 | 2 + 2 * x |
98bceb7c | next | arithmetic | Consider the following sequence: 8, 12, 16, 20, 24, 28, ...
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" | 32 | 6 | 0 | 6 | 8 + 4 * x |
244d501c | previous | fibonacci | Consider the following sequence: ..., 149, 241, 390, 631, 1021, 1652, 2673, 4325, ...
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" | 92 | 8 | 8 | 7 | f(0) = 5; f(1) = 4 ;f(n) = f(n-1) + n(n-1) |
8d5c18a4 | nth | arithmetic | Consider the following sequence: 10, 15, 20, 25, 30, 35, ...
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" | 85 | 6 | 0 | 15 | 10 + 5 * x |
30859f02 | nth | monotonic_random | Consider the following sequence: 1, -13, -94, -186, -242, -296, -360, -455, ...
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 | 8 | 1 | 12 | monotonic_decrease_random starts with 1 |
4d18929d | previous | arithmetic | Consider the following sequence: ..., 41, 49, 57, 65, 73, 81, 89, ...
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 | 5 | 4 | 1 + 8 * x |
af43508b | previous | triangular | Consider the following sequence: ..., 45, 55, 66, 78, 91, 105, 120, 136, ...
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 | 8 | 9 | 8 | x * (x+1) / 2 |
99b64068 | nth | geometric | Consider the following sequence: 5, 20, 80, 320, 1280, 5120, 20480, 81920, ...
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" | 335,544,320 | 8 | 0 | 13 | 5 * 4 ** x |
680ea8b7 | nth | quadratic | Consider the following sequence: -3, 1, 9, 21, 37, 57, ...
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" | 477 | 6 | 0 | 15 | 2 * x ** 2 + 2 * x + -3 |
3e83a0d1 | nth | prime | Consider the following sequence: 2, 3, 5, 7, 11, 13, ...
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" | 53 | 6 | 0 | 15 | prime |
490b11b7 | nth | quadratic | Consider the following sequence: 5, 4, 9, 20, 37, 60, ...
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" | 165 | 6 | 0 | 8 | 3 * x ** 2 + -4 * x + 5 |
966efb98 | next | quadratic | Consider the following sequence: -7, -2, 9, 26, 49, 78, 113, 154, ...
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" | 201 | 8 | 0 | 8 | 3 * x ** 2 + 2 * x + -7 |
b1139b2d | next | fibonacci | Consider the following sequence: 4, 1, 5, 6, 11, ...
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 | 5 | 0 | 5 | f(0) = 4; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
0d238fca | next | quadratic | Consider the following sequence: 5, 6, 13, 26, 45, 70, 101, ...
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" | 138 | 7 | 0 | 7 | 3 * x ** 2 + -2 * x + 5 |
eb0ec525 | nth | prime | Consider the following sequence: 2, 3, 5, 7, 11, ...
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 | 5 | 0 | 17 | prime |
516f61e8 | previous | monotonic_random | Consider the following sequence: ..., 233, 280, 301, 395, 433, 524, 581, ...
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 2 |
dad157e5 | next | arithmetic | Consider the following sequence: 8, 15, 22, 29, 36, 43, 50, ...
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" | 57 | 7 | 0 | 7 | 8 + 7 * x |
44eb274f | nth | triangular | Consider the following sequence: 1, 3, 6, 10, 15, 21, 28, 36, ...
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 | 8 | 1 | 14 | x * (x+1) / 2 |
09225fd0 | next | quadratic | Consider the following sequence: -3, 1, 11, 27, 49, 77, ...
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" | 111 | 6 | 0 | 6 | 3 * x ** 2 + 1 * x + -3 |
e84356ea | nth | power | Consider the following sequence: 1, 5, 25, 125, 625, 3125, 15625, 78125, ...
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" | 6,103,515,625 | 8 | 0 | 14 | 5 ** x |
3f0b692f | previous | fibonacci | Consider the following sequence: ..., 105, 170, 275, 445, 720, 1165, 1885, ...
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" | 65 | 7 | 8 | 7 | f(0) = 0; f(1) = 5 ;f(n) = f(n-1) + n(n-1) |
0e5540c7 | nth | arithmetic | Consider the following sequence: 9, 13, 17, 21, 25, 29, 33, 37, ...
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" | 97 | 8 | 0 | 22 | 9 + 4 * x |
c3cbaa11 | previous | quadratic | Consider the following sequence: ..., 185, 234, 289, 350, 417, 490, 569, 654, ...
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" | 142 | 8 | 7 | 6 | 3 * x ** 2 + 4 * x + 10 |
0f9e9f36 | previous | arithmetic | Consider the following sequence: ..., 62, 70, 78, 86, 94, 102, ...
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" | 54 | 6 | 7 | 6 | 6 + 8 * x |
aad66734 | next | quadratic | Consider the following sequence: -1, 5, 17, 35, 59, 89, 125, ...
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" | 167 | 7 | 0 | 7 | 3 * x ** 2 + 3 * x + -1 |
7d22cea4 | next | fibonacci | Consider the following sequence: 0, 5, 5, 10, 15, 25, 40, ...
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 | f(0) = 0; f(1) = 5 ;f(n) = f(n-1) + n(n-1) |
e39f6d27 | nth | quadratic | Consider the following sequence: 6, 10, 20, 36, 58, ...
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" | 790 | 5 | 0 | 16 | 3 * x ** 2 + 1 * x + 6 |
daff60c2 | nth | arithmetic | Consider the following sequence: 5, 15, 25, 35, 45, 55, 65, ...
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" | 105 | 7 | 0 | 10 | 5 + 10 * x |
8bf2a291 | previous | arithmetic | Consider the following sequence: ..., 47, 56, 65, 74, 83, 92, 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" | 38 | 7 | 5 | 4 | 2 + 9 * x |
cbd2d35b | previous | monotonic_random | Consider the following sequence: ..., 499, 517, 609, 658, 725, 820, 852, ...
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 9 |
08b9fc9e | nth | quadratic | Consider the following sequence: 6, 7, 10, 15, 22, 31, 42, 55, ...
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" | 295 | 8 | 0 | 17 | 1 * x ** 2 + 0 * x + 6 |
efba2906 | nth | monotonic_random | Consider the following sequence: 7, 96, 159, 253, 307, 328, 347, 412, ...
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 7 |
5c4ff537 | previous | fibonacci | Consider the following sequence: ..., 11, 18, 29, 47, 76, 123, 199, 322, ...
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 | 8 | 5 | 4 | f(0) = 2; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
b6c8ae1e | nth | geometric | Consider the following sequence: 5, 20, 80, 320, 1280, ...
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" | 335,544,320 | 5 | 0 | 13 | 5 * 4 ** x |
0ad606f5 | next | fibonacci | Consider the following sequence: 2, 3, 5, 8, 13, 21, 34, ...
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" | 55 | 7 | 0 | 7 | f(0) = 2; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
5d4d2a15 | nth | triangular | Consider the following sequence: 1, 3, 6, 10, 15, 21, 28, 36, ...
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 | 8 | 1 | 9 | x * (x+1) / 2 |
7b4b7e74 | next | fibonacci | Consider the following sequence: 4, 4, 8, 12, 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" | 32 | 5 | 0 | 5 | f(0) = 4; f(1) = 4 ;f(n) = f(n-1) + n(n-1) |
b6383f74 | nth | arithmetic | Consider the following sequence: 8, 14, 20, 26, 32, 38, 44, 50, ...
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" | 116 | 8 | 0 | 18 | 8 + 6 * x |
93b4361c | nth | power | Consider the following sequence: 1, 3, 9, 27, 81, 243, ...
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" | 4,782,969 | 6 | 0 | 14 | 3 ** x |
c50d3d23 | previous | quadratic | Consider the following sequence: ..., 215, 270, 331, 398, 471, 550, ...
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" | 166 | 6 | 8 | 7 | 3 * x ** 2 + 4 * x + -9 |
31a90a62 | nth | monotonic_random | Consider the following sequence: 2, 80, 122, 174, 250, 256, ...
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" | null | 6 | 1 | 11 | monotonic_increase_random starts with 2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.