A351329 A fractal-like sequence: erase all triples of adjacent terms that have an even sum; the remaining terms rebuild the starting sequence.
1, 2, 3, 4, 6, 8, 1, 2, 10, 5, 7, 3, 9, 11, 12, 4, 13, 14, 15, 6, 8, 1, 2, 10, 5, 16, 18, 20, 7, 22, 24, 26, 3, 28, 30, 32, 9, 34, 36, 38, 11, 12, 4, 13, 14, 40, 17, 19, 15, 21, 23, 42, 6, 25, 44, 27, 8, 46, 29, 31, 1, 33, 35, 48, 2, 37, 50, 39, 10, 52, 41, 43, 5, 45, 47, 54, 16, 49, 56, 51, 18, 20, 7, 22
Offset: 1
Links
- Eric Angelini, Fabriquons une suite fractale, January 22nd 2022, personal blog (in French).
Crossrefs
Formula
Parentheses are added around each triple of terms that have an even sum:
(1, 2, 3), (4, 6, 8), 1, 2, (10, 5, 7), 3, (9, 11, 12), 4, (13, 14, 15), 6, 8, 1, 2, 10, 5, (16, 18, 20), 7, (22, 24, 26), 3, (28, 30, 32), 9, (34, 36, 38), 11, 12, 4, 13, 14, (40, 17, 19), 15, (21, 23, 42), 6, (25, 44, 27), 8, (46, 29, 31), 1, ...
Erasing all the parenthesized contents yields
(...), (...), 1, 2, (...), 3, (...), 4, (...), 6, 8, 1, 2, 10, 5, (...), 7, (...), 3, (...), 9, (...), 11, 12, 4, 13, 14, (...), 15, (...), 6, (...), 8, (...), 1, ...
We see that the remaining terms slowly rebuild the starting sequence.
Comments