A Puzzle A Day: 2026-05-09

Alice, a data scientist at 'PatternPulse,' is analyzing a peculiar sequence of numbers representing the 'evolution of a viral algorithm's daily unique user count' in a highly abstracted form. She presents you with the first five days' data and asks you to predict the sixth day's count. What comes next in this sequence: 1, 11, 21, 1211, 111221, ?
Correct: 312211
The sequence follows the 'Look-and-say' rule. Each subsequent number is generated by describing the digits of the previous number. 1. The first number is '1'. 2. Describing '1' (one '1') gives '11'. 3. Describing '11' (two '1s') gives '21'. 4. Describing '21' (one '2', one '1') gives '1211'. 5. Describing '1211' (one '1', one '2', two '1s') gives '111221'. 6. Therefore, describing '111221' (three '1s', two '2s', one '1') gives '312211'.
← View All Daily Puzzles