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 |
|---|---|---|---|---|---|---|---|---|
d4ae88e3 | next | monotonic_random | Consider the following sequence: 3, 50, 114, 115, 206, 280, ...
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 |
31ff9d63 | nth | fibonacci | Consider the following sequence: 3, 2, 5, 7, 12, 19, ...
What is the 15th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | 1,453 | 6 | 0 | 14 | f(0) = 3; f(1) = 2 ;f(n) = f(n-1) + n(n-1) |
6b86ad89 | nth | monotonic_random | Consider the following sequence: 5, -7, -70, -137, -221, -288, -312, ...
What is the 8th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | null | 7 | 1 | 8 | monotonic_decrease_random starts with 5 |
8644c643 | previous | geometric | Consider the following sequence: ..., 768, 1536, 3072, 6144, 12288, 24576, ...
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" | 384 | 6 | 8 | 7 | 3 * 2 ** x |
8a0f9d86 | previous | arithmetic | Consider the following sequence: ..., 28, 33, 38, 43, 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" | 23 | 5 | 5 | 4 | 3 + 5 * x |
cd6b011c | nth | monotonic_random | Consider the following sequence: 1, -61, -94, -184, -268, -280, -345, -419, ...
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 1 |
89c531f3 | previous | geometric | Consider the following sequence: ..., 3645, 10935, 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" | 1,215 | 8 | 6 | 5 | 5 * 3 ** x |
e4bcf97c | next | geometric | Consider the following sequence: 3, 12, 48, 192, 768, ...
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" | 3,072 | 5 | 0 | 5 | 3 * 4 ** x |
31a82b96 | nth | fibonacci | Consider the following sequence: 4, 5, 9, 14, 23, 37, 60, 97, ...
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" | 665 | 8 | 0 | 11 | f(0) = 4; f(1) = 5 ;f(n) = f(n-1) + n(n-1) |
62c471e7 | nth | quadratic | Consider the following sequence: 6, 8, 12, 18, 26, ...
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" | 138 | 5 | 0 | 11 | 1 * x ** 2 + 1 * x + 6 |
fdf750e8 | previous | fibonacci | Consider the following sequence: ..., 15, 24, 39, 63, 102, 165, 267, ...
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 | 7 | 5 | 4 | f(0) = 0; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
dc741ff2 | nth | power | Consider the following sequence: 1, 5, 25, 125, 625, 3125, 15625, ...
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 | 7 | 0 | 12 | 5 ** x |
da74393e | nth | geometric | Consider the following sequence: 4, 12, 36, 108, 324, 972, ...
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" | 26,244 | 6 | 0 | 8 | 4 * 3 ** x |
88558dac | previous | arithmetic | Consider the following sequence: ..., 71, 81, 91, 101, 111, 121, 131, ...
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 | 7 | 7 | 6 | 1 + 10 * x |
53b75fed | next | monotonic_random | Consider the following sequence: 4, -7, -20, -80, -180, -245, ...
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 4 |
b283c434 | previous | fibonacci | Consider the following sequence: ..., 32, 52, 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" | 20 | 7 | 6 | 5 | f(0) = 0; f(1) = 4 ;f(n) = f(n-1) + n(n-1) |
b4fe7b17 | next | arithmetic | Consider the following sequence: 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 | 5 | 0 | 5 | 7 + 2 * x |
2c86b200 | previous | quadratic | Consider the following sequence: ..., 74, 91, 110, 131, 154, 179, 206, ...
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 | 7 | 8 | 7 | 1 * x ** 2 + 0 * x + 10 |
b2084380 | nth | monotonic_random | Consider the following sequence: 1, -5, -69, -82, -180, ...
What is the 20th number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | null | 5 | 1 | 20 | monotonic_decrease_random starts with 1 |
69643ce0 | previous | quadratic | Consider the following sequence: ..., 4, 14, 26, 40, 56, 74, 94, 116, ...
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 | 8 | 7 | 6 | 1 * x ** 2 + -5 * x + -10 |
9be79e82 | next | monotonic_random | Consider the following sequence: 5, 7, 34, 123, 198, ...
What is the next number in this sequence?
Output your answer in JSON with key "answer". If you are not able to provide, answer "null" | null | 5 | 1 | 6 | monotonic_increase_random starts with 5 |
59a7c1c9 | nth | monotonic_random | Consider the following sequence: 3, -47, -57, -62, -70, -123, -186, -259, ...
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" | null | 8 | 1 | 16 | monotonic_decrease_random starts with 3 |
9c1abc2b | previous | quadratic | Consider the following sequence: ..., 76, 95, 116, 139, 164, 191, 220, ...
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 | 7 | 7 | 6 | 1 * x ** 2 + 4 * x + -1 |
9477bf9c | next | quadratic | Consider the following sequence: 5, 7, 11, 17, 25, 35, 47, 61, ...
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" | 77 | 8 | 0 | 8 | 1 * x ** 2 + 1 * x + 5 |
00aa2f63 | next | arithmetic | Consider the following sequence: 3, 10, 17, 24, 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" | 38 | 5 | 0 | 5 | 3 + 7 * x |
7e3395d1 | nth | geometric | Consider the following sequence: 2, 10, 50, 250, 1250, 6250, 31250, ...
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" | 97,656,250 | 7 | 0 | 11 | 2 * 5 ** x |
77e9f1f6 | nth | fibonacci | Consider the following sequence: 1, 3, 4, 7, 11, ...
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" | 521 | 5 | 0 | 12 | f(0) = 1; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
2f1da83c | nth | alternating | Consider the following sequence: -1, 2, -3, 4, -5, 6, ...
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 | 6 | 1 | 16 | (-1) ** x * x |
c29eaa33 | previous | arithmetic | Consider the following sequence: ..., 27, 31, 35, 39, 43, 47, ...
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" | 23 | 6 | 6 | 5 | 3 + 4 * x |
27eae3e4 | previous | arithmetic | Consider the following sequence: ..., 11, 13, 15, 17, 19, 21, 23, 25, ...
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 | 5 | 4 | 1 + 2 * x |
12842462 | next | quadratic | Consider the following sequence: -8, -11, -12, -11, -8, -3, 4, 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" | 24 | 8 | 0 | 8 | 1 * x ** 2 + -4 * x + -8 |
c9312f92 | nth | power | Consider the following sequence: 1, 3, 9, 27, 81, 243, ...
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 | 6 | 0 | 6 | 3 ** x |
f8e83b06 | next | monotonic_random | Consider the following sequence: 2, -93, -169, -268, -323, -363, ...
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 2 |
e4ced27f | nth | quadratic | Consider the following sequence: -7, -7, -1, 11, 29, 53, ...
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" | 119 | 6 | 0 | 7 | 3 * x ** 2 + -3 * x + -7 |
516e0814 | previous | arithmetic | Consider the following sequence: ..., 21, 24, 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" | 18 | 8 | 5 | 4 | 6 + 3 * x |
2b7b5b33 | previous | geometric | Consider the following sequence: ..., 8748, 26244, 78732, 236196, 708588, 2125764, 6377292, ...
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,916 | 7 | 7 | 6 | 4 * 3 ** x |
201696d5 | previous | monotonic_random | Consider the following sequence: ..., 284, 333, 405, 472, 478, 569, ...
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 | 6 | 5 | monotonic_increase_random starts with 8 |
c885a711 | nth | monotonic_random | Consider the following sequence: 3, 39, 82, 122, 129, 214, 227, ...
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" | null | 7 | 1 | 16 | monotonic_increase_random starts with 3 |
1acc0d07 | previous | quadratic | Consider the following sequence: ..., 81, 101, 123, 147, 173, ...
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" | 63 | 5 | 8 | 7 | 1 * x ** 2 + 3 * x + -7 |
d847a20d | next | quadratic | Consider the following sequence: -3, -4, -1, 6, 17, 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" | 51 | 6 | 0 | 6 | 2 * x ** 2 + -3 * x + -3 |
f39c0477 | previous | fibonacci | Consider the following sequence: ..., 20, 32, 52, 84, 136, 220, 356, ...
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 | 7 | 5 | 4 | f(0) = 0; f(1) = 4 ;f(n) = f(n-1) + n(n-1) |
6d82f8d5 | nth | arithmetic | Consider the following sequence: 10, 15, 20, 25, 30, 35, 40, 45, ...
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" | 120 | 8 | 0 | 22 | 10 + 5 * x |
dfd60964 | previous | monotonic_random | Consider the following sequence: ..., -202, -279, -291, -345, -433, -521, ...
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 | 6 | 5 | monotonic_decrease_random starts with 4 |
98ee9c32 | nth | arithmetic | Consider the following sequence: 4, 14, 24, 34, 44, 54, 64, ...
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" | 94 | 7 | 0 | 9 | 4 + 10 * x |
774877d4 | nth | monotonic_random | Consider the following sequence: 7, -66, -77, -103, -119, -173, ...
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_decrease_random starts with 7 |
de0093b9 | nth | monotonic_random | Consider the following sequence: 5, 0, -57, -113, -164, -190, -278, -318, ...
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 | 8 | 1 | 11 | monotonic_decrease_random starts with 5 |
c5a53bb9 | nth | fibonacci | Consider the following sequence: 1, 4, 5, 9, 14, ...
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" | 37 | 5 | 0 | 6 | f(0) = 1; f(1) = 4 ;f(n) = f(n-1) + n(n-1) |
b0e590b4 | nth | quadratic | Consider the following sequence: 0, 0, 6, 18, 36, 60, 90, ...
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" | 330 | 7 | 0 | 11 | 3 * x ** 2 + -3 * x + 0 |
6dc111b4 | nth | monotonic_random | Consider the following sequence: 3, 96, 136, 228, 239, 324, ...
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_increase_random starts with 3 |
28a825f8 | nth | arithmetic | Consider the following sequence: 9, 14, 19, 24, 29, 34, ...
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" | 74 | 6 | 0 | 13 | 9 + 5 * x |
af674958 | next | quadratic | Consider the following sequence: 6, 7, 10, 15, 22, 31, 42, 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" | 70 | 8 | 0 | 8 | 1 * x ** 2 + 0 * x + 6 |
9b70e5ad | previous | monotonic_random | Consider the following sequence: ..., -594, -676, -719, -745, -792, -823, -879, -927, ...
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_decrease_random starts with 5 |
d7e16c2f | nth | geometric | Consider the following sequence: 2, 8, 32, 128, 512, 2048, ...
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" | 32,768 | 6 | 0 | 7 | 2 * 4 ** x |
1bb56bb6 | nth | fibonacci | Consider the following sequence: 2, 3, 5, 8, 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" | 987 | 5 | 0 | 13 | f(0) = 2; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
10e4d890 | previous | arithmetic | Consider the following sequence: ..., 48, 54, 60, 66, 72, ...
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 | 5 | 7 | 6 | 6 + 6 * x |
741cc130 | nth | fibonacci | Consider the following sequence: 4, 2, 6, 8, 14, 22, 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" | 18,698 | 7 | 0 | 19 | f(0) = 4; f(1) = 2 ;f(n) = f(n-1) + n(n-1) |
2e2b8161 | next | quadratic | Consider the following sequence: -6, -5, 0, 9, 22, 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" | 60 | 6 | 0 | 6 | 2 * x ** 2 + -1 * x + -6 |
4a6076d3 | nth | fibonacci | Consider the following sequence: 0, 3, 3, 6, 9, ...
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" | 1,830 | 5 | 0 | 15 | f(0) = 0; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
005646d7 | nth | fibonacci | Consider the following sequence: 0, 3, 3, 6, 9, 15, 24, ...
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" | 267 | 7 | 0 | 11 | f(0) = 0; f(1) = 3 ;f(n) = f(n-1) + n(n-1) |
7bfc0a00 | previous | quadratic | Consider the following sequence: ..., 56, 71, 88, 107, 128, 151, 176, 203, ...
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 | 8 | 6 | 5 | 1 * x ** 2 + 2 * x + 8 |
22f3d0a7 | next | arithmetic | Consider the following sequence: 9, 12, 15, 18, 21, 24, 27, 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" | 33 | 8 | 0 | 8 | 9 + 3 * x |
80641be5 | next | geometric | Consider the following sequence: 3, 15, 75, 375, 1875, ...
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" | 9,375 | 5 | 0 | 5 | 3 * 5 ** x |
659f6ec3 | nth | quadratic | Consider the following sequence: -5, -3, 5, 19, 39, 65, 97, 135, ...
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" | 747 | 8 | 0 | 16 | 3 * x ** 2 + -1 * x + -5 |
1db4edaa | next | arithmetic | Consider the following sequence: 8, 13, 18, 23, 28, 33, ...
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" | 38 | 6 | 0 | 6 | 8 + 5 * x |
7f7fd1be | previous | arithmetic | Consider the following sequence: ..., 57, 65, 73, 81, 89, 97, 105, ...
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 | 7 | 6 | 5 | 9 + 8 * x |
6f2e8a97 | nth | quadratic | Consider the following sequence: -6, -2, 6, 18, 34, 54, 78, 106, ...
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" | 414 | 8 | 0 | 14 | 2 * x ** 2 + 2 * x + -6 |
2b066d06 | nth | prime | Consider the following sequence: 2, 3, 5, 7, 11, ...
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" | 13 | 5 | 0 | 5 | prime |
5f517fb3 | nth | geometric | Consider the following sequence: 2, 8, 32, 128, 512, 2048, 8192, 32768, ...
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" | 134,217,728 | 8 | 0 | 13 | 2 * 4 ** x |
d01a741a | next | quadratic | Consider the following sequence: 9, 6, 7, 12, 21, 34, 51, ...
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 * x ** 2 + -5 * x + 9 |
5165f6f8 | previous | quadratic | Consider the following sequence: ..., 51, 80, 115, 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" | 28 | 8 | 5 | 4 | 3 * x ** 2 + -4 * x + -4 |
283f44bd | next | quadratic | Consider the following sequence: 9, 11, 15, 21, 29, 39, 51, ...
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 | 1 * x ** 2 + 1 * x + 9 |
8299b9f7 | previous | fibonacci | Consider the following sequence: ..., 105, 170, 275, 445, 720, 1165, ...
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 | 6 | 8 | 7 | f(0) = 0; f(1) = 5 ;f(n) = f(n-1) + n(n-1) |
013923dc | nth | quadratic | Consider the following sequence: 9, 10, 13, 18, 25, 34, 45, ...
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" | 298 | 7 | 0 | 17 | 1 * x ** 2 + 0 * x + 9 |
b92ffa63 | next | quadratic | Consider the following sequence: -6, -8, -8, -6, -2, 4, 12, 22, ...
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" | 34 | 8 | 0 | 8 | 1 * x ** 2 + -3 * x + -6 |
a3f09a2d | previous | quadratic | Consider the following sequence: ..., 71, 102, 139, 182, 231, 286, ...
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 | 6 | 5 | 4 | 3 * x ** 2 + -2 * x + 6 |
97b9a8b4 | nth | triangular | Consider the following sequence: 1, 3, 6, 10, 15, 21, 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" | 210 | 8 | 1 | 20 | x * (x+1) / 2 |
fc6ee571 | nth | quadratic | Consider the following sequence: -3, -5, -5, -3, 1, 7, 15, 25, ...
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" | 151 | 8 | 0 | 14 | 1 * x ** 2 + -3 * x + -3 |
7ce6763a | nth | monotonic_random | Consider the following sequence: 2, 23, 49, 98, 103, 116, ...
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 2 |
d41650d0 | nth | geometric | Consider the following sequence: 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" | 268,435,456 | 7 | 0 | 13 | 4 * 4 ** x |
d7359ade | next | quadratic | Consider the following sequence: -6, -6, 0, 12, 30, 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" | 84 | 6 | 0 | 6 | 3 * x ** 2 + -3 * x + -6 |
4ad1466e | nth | monotonic_random | Consider the following sequence: 5, 50, 122, 208, 303, 376, 396, ...
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 | 7 | 1 | 11 | monotonic_increase_random starts with 5 |
8f37364e | previous | quadratic | Consider the following sequence: ..., 82, 117, 158, 205, 258, ...
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 | 5 | 4 | 3 * x ** 2 + 2 * x + -3 |
9e96da10 | next | quadratic | Consider the following sequence: 0, 7, 18, 33, 52, 75, ...
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" | 102 | 6 | 0 | 6 | 2 * x ** 2 + 5 * x + 0 |
24a71e8e | previous | arithmetic | Consider the following sequence: ..., 69, 77, 85, 93, 101, 109, ...
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 | 8 | 7 | 5 + 8 * x |
5d9977e9 | previous | monotonic_random | Consider the following sequence: ..., -277, -370, -419, -495, -523, ...
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 | 7 | 6 | monotonic_decrease_random starts with 6 |
5034485d | nth | arithmetic | Consider the following sequence: 3, 11, 19, 27, 35, 43, ...
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" | 219 | 6 | 0 | 27 | 3 + 8 * x |
3ee1fd74 | next | arithmetic | Consider the following sequence: 10, 19, 28, 37, 46, ...
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 | 5 | 0 | 5 | 10 + 9 * x |
f839b1c2 | previous | fibonacci | Consider the following sequence: ..., 53, 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" | 33 | 6 | 7 | 6 | f(0) = 5; f(1) = 1 ;f(n) = f(n-1) + n(n-1) |
0f676c31 | nth | monotonic_random | Consider the following sequence: 8, 91, 150, 202, 207, 280, 347, 408, ...
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 |
607b618d | previous | power | Consider the following sequence: ..., 128, 256, 512, 1024, 2048, 4096, 8192, 16384, ...
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" | 64 | 8 | 7 | 6 | 2 ** x |
d70eed21 | previous | monotonic_random | Consider the following sequence: ..., 403, 484, 572, 646, 736, 825, 865, 891, ...
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_increase_random starts with 9 |
860e19f9 | next | monotonic_random | Consider the following sequence: 6, 106, 151, 214, 263, 298, 335, 408, ...
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 6 |
b4b43e65 | nth | power | Consider the following sequence: 1, 5, 25, 125, 625, 3125, 15625, 78125, ...
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" | 9,765,625 | 8 | 0 | 10 | 5 ** x |
f67c10a2 | nth | geometric | Consider the following sequence: 2, 10, 50, 250, 1250, 6250, 31250, ...
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" | 2,441,406,250 | 7 | 0 | 13 | 2 * 5 ** x |
1cefc2be | nth | arithmetic | Consider the following sequence: 6, 8, 10, 12, 14, ...
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" | 42 | 5 | 0 | 18 | 6 + 2 * x |
adbbe12d | nth | quadratic | Consider the following sequence: 5, 5, 9, 17, 29, 45, ...
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" | 65 | 6 | 0 | 6 | 2 * x ** 2 + -2 * x + 5 |
97d64699 | previous | monotonic_random | Consider the following sequence: ..., 366, 381, 463, 536, 620, ...
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 7 |
df88014e | nth | monotonic_random | Consider the following sequence: 1, -44, -59, -80, -148, -169, -229, ...
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 | 7 | 1 | 17 | monotonic_decrease_random starts with 1 |
99f6e4a8 | nth | triangular | Consider the following sequence: 1, 3, 6, 10, 15, 21, ...
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" | 66 | 6 | 1 | 11 | x * (x+1) / 2 |
3fcb8838 | next | monotonic_random | Consider the following sequence: 7, 85, 161, 193, 290, 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 | 6 | 1 | 7 | monotonic_increase_random starts with 7 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.