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 |
|---|---|---|---|---|---|---|---|---|
f2b7997c | next | quadratic | Consider the following sequence: -5, -9, -11, -11, -9, -5, ...
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 | 6 | 0 | 6 | 1 * x ** 2 + -5 * x + -5 |
9518865c | next | monotonic_random | Consider the following sequence: 3, -8, -57, -73, -109, ...
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 3 |
f0985a73 | previous | monotonic_random | Consider the following sequence: ..., 340, 384, 432, 520, 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 | 5 | 6 | 5 | monotonic_increase_random starts with 5 |
1af43a22 | previous | arithmetic | Consider the following sequence: ..., 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" | 52 | 7 | 6 | 5 | 2 + 10 * x |
9182735e | previous | quadratic | Consider the following sequence: ..., 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" | 87 | 5 | 7 | 6 | 2 * x ** 2 + 1 * x + 9 |
dbbcfe63 | nth | power | Consider the following sequence: 1, 2, 4, 8, 16, 32, 64, 128, ...
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 | 8 | 0 | 10 | 2 ** x |
0d9e01bc | next | monotonic_random | Consider the following sequence: 3, 77, 169, 234, 239, 256, ...
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 |
a6d77750 | previous | fibonacci | Consider the following sequence: ..., 86, 139, 225, 364, 589, ...
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 | 5 | 8 | 7 | f(0) = 5; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
92f6136e | next | arithmetic | Consider the following sequence: 6, 14, 22, 30, 38, 46, 54, ...
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" | 62 | 7 | 0 | 7 | 6 + 8 * x |
75f0e04a | previous | quadratic | Consider the following sequence: ..., 107, 138, 173, 212, 255, ...
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 | 5 | 6 | 5 | 2 * x ** 2 + 5 * x + 5 |
9b3b5231 | nth | prime | Consider the following sequence: 2, 3, 5, 7, 11, 13, 17, 19, ...
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" | 67 | 8 | 0 | 18 | prime |
2886869f | previous | geometric | Consider the following sequence: ..., 19683, 59049, 177147, 531441, 1594323, 4782969, 14348907, ...
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,561 | 7 | 8 | 7 | 3 * 3 ** x |
82570166 | previous | monotonic_random | Consider the following sequence: ..., -414, -461, -548, -565, -632, -717, -795, -871, ...
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 1 |
3fbcb4d5 | nth | fibonacci | Consider the following sequence: 1, 4, 5, 9, 14, 23, 37, 60, ...
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" | 254 | 8 | 0 | 10 | f(0) = 1; f(1) = 4 ;f(n) = f(n-1) + n(n-1) |
088fcc63 | nth | monotonic_random | Consider the following sequence: 3, 93, 98, 175, 216, 256, 321, ...
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 3 |
c7f8416c | previous | quadratic | Consider the following sequence: ..., 19, 31, 45, 61, 79, 99, 121, 145, ...
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" | 9 | 8 | 8 | 7 | 1 * x ** 2 + -5 * x + -5 |
b9d557f4 | previous | geometric | Consider the following sequence: ..., 196608, 786432, 3145728, 12582912, 50331648, 201326592, ...
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" | 49,152 | 6 | 8 | 7 | 3 * 4 ** x |
1af1d7cc | next | geometric | Consider the following sequence: 3, 6, 12, 24, 48, 96, 192, ...
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" | 384 | 7 | 0 | 7 | 3 * 2 ** x |
43f789c4 | nth | power | Consider the following sequence: 1, 3, 9, 27, 81, ...
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" | 729 | 5 | 0 | 6 | 3 ** x |
e7caed52 | previous | geometric | Consider the following sequence: ..., 1171875, 5859375, 29296875, 146484375, 732421875, 3662109375, ...
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" | 234,375 | 6 | 8 | 7 | 3 * 5 ** x |
06f3e0f0 | next | quadratic | Consider the following sequence: 2, 1, 2, 5, 10, 17, 26, 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" | 50 | 8 | 0 | 8 | 1 * x ** 2 + -2 * x + 2 |
52247026 | nth | geometric | Consider the following sequence: 4, 16, 64, 256, 1024, 4096, 16384, 65536, ...
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" | 4,194,304 | 8 | 0 | 10 | 4 * 4 ** x |
f9bc5b35 | next | arithmetic | Consider the following sequence: 2, 5, 8, 11, 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" | 17 | 5 | 0 | 5 | 2 + 3 * x |
489be314 | previous | monotonic_random | Consider the following sequence: ..., -288, -338, -400, -483, -573, -629, -668, -742, ...
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 10 |
53fa3998 | previous | power | Consider the following sequence: ..., 3125, 15625, 78125, 390625, 1953125, ...
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" | 625 | 5 | 5 | 4 | 5 ** x |
9eaf9ef0 | previous | quadratic | Consider the following sequence: ..., 19, 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" | 13 | 6 | 5 | 4 | 1 * x ** 2 + -3 * x + 9 |
dac04ff7 | next | arithmetic | Consider the following sequence: 10, 15, 20, 25, 30, 35, ...
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" | 40 | 6 | 0 | 6 | 10 + 5 * x |
aa054b34 | previous | geometric | Consider the following sequence: ..., 96, 192, 384, 768, 1536, ...
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" | 48 | 5 | 5 | 4 | 3 * 2 ** x |
cb764466 | nth | alternating | Consider the following sequence: -1, 2, -3, 4, -5, 6, -7, ...
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 | 7 | 1 | 16 | (-1) ** x * x |
745a7dd0 | nth | fibonacci | Consider the following sequence: 5, 1, 6, 7, 13, 20, ...
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" | 225 | 6 | 0 | 10 | f(0) = 5; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
3a1ad633 | previous | arithmetic | Consider the following sequence: ..., 65, 75, 85, 95, 105, 115, 125, 135, ...
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 | 6 | 5 | 5 + 10 * x |
8c666f20 | nth | monotonic_random | Consider the following sequence: 6, 52, 130, 199, 265, 292, 381, ...
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 |
e542c73b | previous | fibonacci | Consider the following sequence: ..., 84, 136, 220, 356, 576, ...
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 | 5 | 7 | 6 | f(0) = 4; f(1) = 4 ;f(n) = f(n-1) + n(n-1) |
dabefb1d | previous | monotonic_random | Consider the following sequence: ..., 311, 343, 353, 388, 404, ...
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_increase_random starts with 9 |
b46cd9ee | nth | prime | Consider the following sequence: 2, 3, 5, 7, 11, 13, ...
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" | 71 | 6 | 0 | 19 | prime |
81c52daf | nth | quadratic | Consider the following sequence: 2, -1, -2, -1, 2, 7, ...
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" | 98 | 6 | 0 | 12 | 1 * x ** 2 + -4 * x + 2 |
da84031c | previous | geometric | Consider the following sequence: ..., 3072, 12288, 49152, 196608, 786432, 3145728, 12582912, ...
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 | 7 | 5 | 4 | 3 * 4 ** x |
8a5cc3fe | next | monotonic_random | Consider the following sequence: 5, -61, -153, -173, -258, -275, -294, -343, ...
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 |
6d59922d | previous | power | Consider the following sequence: ..., 243, 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" | 81 | 7 | 5 | 4 | 3 ** x |
bcde23c8 | next | geometric | Consider the following sequence: 2, 4, 8, 16, 32, 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" | 128 | 6 | 0 | 6 | 2 * 2 ** x |
12f0ddd5 | next | monotonic_random | Consider the following sequence: 2, 73, 137, 139, 194, 281, ...
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 2 |
ae8c9af5 | previous | arithmetic | Consider the following sequence: ..., 67, 77, 87, 97, 107, 117, 127, ...
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" | 57 | 7 | 6 | 5 | 7 + 10 * x |
91dd08f7 | nth | arithmetic | Consider the following sequence: 8, 16, 24, 32, 40, 48, ...
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" | 144 | 6 | 0 | 17 | 8 + 8 * x |
2d78c067 | nth | geometric | Consider the following sequence: 2, 4, 8, 16, 32, 64, 128, ...
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,096 | 7 | 0 | 11 | 2 * 2 ** x |
16a1b201 | nth | factorial | Consider the following sequence: 1, 2, 6, 24, 120, 720, 5040, ...
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" | 362,880 | 7 | 1 | 9 | x! |
c7d0a2fc | previous | arithmetic | Consider the following sequence: ..., 66, 74, 82, 90, 98, 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" | 58 | 6 | 7 | 6 | 10 + 8 * x |
46b51a2a | nth | monotonic_random | Consider the following sequence: 1, -78, -137, -180, -219, -265, ...
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" | null | 6 | 1 | 13 | monotonic_decrease_random starts with 1 |
dae26b81 | nth | geometric | Consider the following sequence: 1, 3, 9, 27, 81, 243, 729, ...
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" | 59,049 | 7 | 0 | 10 | 1 * 3 ** x |
b9b8d03f | nth | prime | Consider the following sequence: 2, 3, 5, 7, 11, 13, ...
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" | 47 | 6 | 0 | 14 | prime |
92d82191 | previous | prime | Consider the following sequence: ..., 13, 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" | 11 | 8 | 5 | 4 | prime |
e557404b | nth | quadratic | Consider the following sequence: 2, 0, 0, 2, 6, 12, 20, 30, ...
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" | 306 | 8 | 0 | 19 | 1 * x ** 2 + -3 * x + 2 |
832e1ad9 | nth | quadratic | Consider the following sequence: -7, -5, 3, 17, 37, 63, 95, 133, ...
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" | 653 | 8 | 0 | 15 | 3 * x ** 2 + -1 * x + -7 |
100f3138 | previous | power | Consider the following sequence: ..., 3125, 15625, 78125, 390625, 1953125, 9765625, ...
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" | 625 | 6 | 5 | 4 | 5 ** x |
e4127c5b | next | geometric | Consider the following sequence: 2, 6, 18, 54, 162, 486, 1458, ...
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" | 4,374 | 7 | 0 | 7 | 2 * 3 ** x |
aca9fa7f | previous | arithmetic | Consider the following sequence: ..., 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" | 62 | 5 | 8 | 7 | 6 + 8 * x |
13305bce | nth | geometric | Consider the following sequence: 2, 6, 18, 54, 162, 486, ...
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" | 39,366 | 6 | 0 | 9 | 2 * 3 ** x |
ffd3291f | previous | quadratic | Consider the following sequence: ..., 65, 89, 117, 149, 185, ...
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 | 6 | 5 | 2 * x ** 2 + -2 * x + 5 |
221760e8 | previous | quadratic | Consider the following sequence: ..., 94, 132, 176, 226, 282, 344, ...
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 | 6 | 5 | 4 | 3 * x ** 2 + 5 * x + -6 |
c9ed8fe2 | nth | fibonacci | Consider the following sequence: 0, 3, 3, 6, 9, 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" | 63 | 6 | 0 | 8 | f(0) = 0; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
a818b270 | nth | arithmetic | Consider the following sequence: 7, 17, 27, 37, 47, 57, 67, ...
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" | 297 | 7 | 0 | 29 | 7 + 10 * x |
afc1816d | next | quadratic | Consider the following sequence: 5, 8, 15, 26, 41, ...
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 | 5 | 0 | 5 | 2 * x ** 2 + 1 * x + 5 |
52d72d4e | nth | geometric | Consider the following sequence: 3, 12, 48, 192, 768, 3072, 12288, ...
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" | 201,326,592 | 7 | 0 | 13 | 3 * 4 ** x |
6ead2caf | nth | quadratic | Consider the following sequence: -9, -11, -11, -9, -5, ...
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" | 1 | 5 | 0 | 5 | 1 * x ** 2 + -3 * x + -9 |
93419faa | nth | fibonacci | Consider the following sequence: 3, 3, 6, 9, 15, 24, 39, ...
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" | 432 | 7 | 0 | 11 | f(0) = 3; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
a9f9fbb8 | previous | quadratic | Consider the following sequence: ..., 48, 68, 92, 120, 152, 188, 228, 272, ...
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 | 8 | 5 | 4 | 2 * x ** 2 + -2 * x + 8 |
44538199 | next | geometric | Consider the following sequence: 5, 10, 20, 40, 80, ...
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" | 160 | 5 | 0 | 5 | 5 * 2 ** x |
a83ca065 | previous | monotonic_random | Consider the following sequence: ..., -310, -403, -464, -562, -588, -657, -750, ...
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 4 |
6cd6e59b | nth | monotonic_random | Consider the following sequence: 3, -70, -78, -167, -192, -287, -338, -402, ...
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_decrease_random starts with 3 |
74e5d01d | nth | alternating | Consider the following sequence: -1, 2, -3, 4, -5, 6, -7, ...
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 | 7 | 1 | 12 | (-1) ** x * x |
ffab9b42 | nth | quadratic | Consider the following sequence: 7, 9, 17, 31, 51, ...
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" | 147 | 5 | 0 | 7 | 3 * x ** 2 + -1 * x + 7 |
974375ca | next | quadratic | Consider the following sequence: -1, 0, 7, 20, 39, ...
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" | 64 | 5 | 0 | 5 | 3 * x ** 2 + -2 * x + -1 |
8519ade9 | nth | fibonacci | Consider the following sequence: 1, 3, 4, 7, 11, ...
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,207 | 5 | 0 | 15 | f(0) = 1; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
0bee0956 | next | quadratic | Consider the following sequence: -10, -11, -6, 5, 22, 45, 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" | 109 | 7 | 0 | 7 | 3 * x ** 2 + -4 * x + -10 |
12403080 | nth | monotonic_random | Consider the following sequence: 6, -85, -156, -190, -283, ...
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 | 5 | 1 | 17 | monotonic_decrease_random starts with 6 |
f26e0735 | nth | quadratic | Consider the following sequence: 8, 8, 12, 20, 32, 48, 68, 92, ...
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" | 188 | 8 | 0 | 10 | 2 * x ** 2 + -2 * x + 8 |
77c40f60 | nth | geometric | Consider the following sequence: 2, 10, 50, 250, 1250, 6250, ...
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" | 781,250 | 6 | 0 | 8 | 2 * 5 ** x |
45ef52dc | previous | quadratic | Consider the following sequence: ..., 45, 64, 87, 114, 145, 180, 219, ...
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 | 7 | 5 | 4 | 2 * x ** 2 + -3 * x + 10 |
2dc09799 | nth | geometric | Consider the following sequence: 2, 10, 50, 250, 1250, 6250, 31250, 156250, ...
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" | 781,250 | 8 | 0 | 8 | 2 * 5 ** x |
cc02067b | next | monotonic_random | Consider the following sequence: 7, -8, -10, -108, -191, ...
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 |
1eeb7788 | next | quadratic | Consider the following sequence: 4, 10, 20, 34, 52, 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" | 100 | 6 | 0 | 6 | 2 * x ** 2 + 4 * x + 4 |
858191ee | next | quadratic | Consider the following sequence: 10, 12, 20, 34, 54, ...
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 | 5 | 0 | 5 | 3 * x ** 2 + -1 * x + 10 |
6357331d | next | arithmetic | Consider the following sequence: 2, 12, 22, 32, 42, 52, 62, ...
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" | 72 | 7 | 0 | 7 | 2 + 10 * x |
cb7c7805 | previous | geometric | Consider the following sequence: ..., 2916, 8748, 26244, 78732, 236196, ...
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" | 972 | 5 | 6 | 5 | 4 * 3 ** x |
e71eb5f8 | next | arithmetic | Consider the following sequence: 7, 15, 23, 31, 39, 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" | 55 | 6 | 0 | 6 | 7 + 8 * x |
41988949 | previous | power | Consider the following sequence: ..., 64, 128, 256, 512, 1024, 2048, 4096, 8192, ...
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 | 8 | 6 | 5 | 2 ** x |
9cc476a6 | previous | geometric | Consider the following sequence: ..., 96, 192, 384, 768, 1536, 3072, 6144, ...
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" | 48 | 7 | 5 | 4 | 3 * 2 ** x |
9167d876 | previous | arithmetic | Consider the following sequence: ..., 31, 35, 39, 43, 47, 51, 55, 59, ...
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 | 8 | 7 | 6 | 3 + 4 * x |
3950a187 | next | monotonic_random | Consider the following sequence: 7, -79, -167, -206, -286, -323, -368, ...
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 7 |
126c9737 | nth | fibonacci | Consider the following sequence: 3, 4, 7, 11, 18, ...
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" | 47 | 5 | 0 | 6 | f(0) = 3; f(1) = 4 ;f(n) = f(n-1) + n(n-1) |
b2513cae | nth | monotonic_random | Consider the following sequence: 5, -37, -54, -78, -177, -227, -273, -314, ...
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 5 |
58685177 | nth | arithmetic | Consider the following sequence: 9, 18, 27, 36, 45, 54, ...
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" | 90 | 6 | 0 | 9 | 9 + 9 * x |
832a08af | nth | arithmetic | Consider the following sequence: 6, 10, 14, 18, 22, 26, 30, ...
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" | 90 | 7 | 0 | 21 | 6 + 4 * x |
dbfbb461 | previous | arithmetic | Consider the following sequence: ..., 27, 30, 33, 36, 39, 42, ...
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 | 8 | 7 | 3 + 3 * x |
9fb38598 | previous | arithmetic | Consider the following sequence: ..., 42, 49, 56, 63, 70, ...
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 | 5 | 4 | 7 + 7 * x |
5db17862 | next | monotonic_random | Consider the following sequence: 8, 29, 33, 52, 99, 118, 129, ...
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 |
bba0b9e0 | nth | arithmetic | Consider the following sequence: 2, 6, 10, 14, 18, ...
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" | 102 | 5 | 0 | 25 | 2 + 4 * x |
f844fc2e | previous | arithmetic | Consider the following sequence: ..., 53, 63, 73, 83, 93, 103, ...
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" | 43 | 6 | 5 | 4 | 3 + 10 * x |
e6c4f9f8 | nth | quadratic | Consider the following sequence: -8, -8, -6, -2, 4, 12, 22, 34, ...
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" | 82 | 8 | 0 | 10 | 1 * x ** 2 + -1 * x + -8 |
371199d1 | nth | quadratic | Consider the following sequence: -3, -5, -1, 9, 25, 47, 75, 109, ...
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" | 247 | 8 | 0 | 10 | 3 * x ** 2 + -5 * x + -3 |
14973c34 | next | fibonacci | Consider the following sequence: 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 | 6 | 0 | 6 | f(0) = 2; f(1) = 4 ;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.