Take the numbers 1, 2, 3, 4, 5, 6, 7, 8, 9, 10… laid out in a row, and let's split them up like this: (1), (2, 3), (4, 5, 6), (7, 8, 9, 10)… The first group has 1 number, the second has 2, the third has 3, and so on — the count inside each group grows by one every time. A sequence divided into groups by a rule like this is called a grouped sequence.
Grouped sequence problems feel tricky because you can't treat the whole thing as one sequence and plug it straight into a formula. Instead, you have to break it into two steps: "which group does it belong to?" and "what position is it within that group?" Here's how that works.
① First, count how many groups you've gone through — the total count of numbers up through the nth group is 1+2+3+...+n, or n(n+1)/2. Find the smallest n for which this value first exceeds the position you're looking for (say, the 50th number overall), and that n tells you exactly which group it's in.
② Then, figure out its position within that group — the count of numbers up through just before the nth group (that is, through the (n-1)th group) is (n-1)n/2. Subtract that from the position you're looking for, and you get exactly which position it holds within the nth group.
Explaining it in words alone gets confusing, so let's check it with numbers. Say we're looking for the 20th number overall. Finding the n where n(n+1)/2 first exceeds 20: 5×6/2=15 isn't enough, but 6×7/2=21 goes past it, so it belongs to Group 6. Since the count through Group 5 is 15, 20-15=5, meaning it's the 5th position in Group 6. Group 6 is (16, 17, 18, 19, 20, 21), so indeed, 20 sits right there in the 5th position.
Grouped sequences aren't limited to numbers that simply run 1, 2, 3…. They often show up as fractions too. For example, 1/1, (1/2, 2/1), (1/3, 2/2, 3/1), (1/4, 2/3, 3/2, 4/1)… — fractions grouped by having a constant sum of numerator and denominator are a common form. These problems are one step trickier, since you also have to work out separately how much the numerator increases and the denominator decreases within each group. But the underlying approach is exactly the same — find "which group" first, then find "which position within that group."
This type of problem matters because it trains a real way of thinking: when looking at any regular arrangement, don't try to take in the whole thing at once — break it into smaller chunks instead. Figuring out which week and day of the week a date falls on, or finding which row and seat a position corresponds to on a seating chart, both have exactly the same structure as a grouped sequence. Once you build the habit of breaking things down into "overall position → which group → position within that group," even arrangement problems that look complicated can be solved step by step.
When studying this with a child, the most effective approach is to have them draw the brackets themselves on paper and group the numbers by hand. Writing out 1 through 20 and drawing the brackets themselves, counting by hand to figure out "which group does this number fall into?", makes the connection click far more naturally when they later learn the formula n(n+1)/2 — "oh, this is just adding up all those group sizes." Rather than memorizing the formula first, letting kids count through small numbers and discover the pattern for themselves is the surest way to understand grouped sequences.