Math Patterns in Excel
📊 Math Curiosity with Excel:
Did you know Excel can spark pattern‑hunting curiosity in math?
Using this formula:
=MAP(SEQUENCE(10),LAMBDA(x,LET(s,x*2+1,a,SEQUENCE(s,,x^2),TEXTJOIN("+",,TAKE(a,x+1))&"="&TEXTJOIN("+",,DROP(a,x+1)))))

👉 For x = 4, Excel generates:
16+17+18+19+20 = 21+22+23+24
✨ Notice how the left side has x+1 terms, while the right side has x terms.
They don’t balance numerically — but they reveal a hidden symmetry in sequences.
🔔 This is curiosity at work: math isn’t only about solving equations, it’s about spotting unexpected structures. And Excel is a playground to explore them!
Math + Excel Reveal a Hidden Symmetry:
Sometimes Excel doesn’t just calculate.
It reveals patterns.
Here’s a simple LET formula that generates a beautiful symmetric sequence:
=LET(n,6,a,n*2-1,TEXTJOIN("+",,n-ABS(SEQUENCE(a)-n))&"="&n&"^2")

For n = 6, Excel produces:
1 + 2 + 3 + 4 + 5 + 6 + 5 + 4 + 3 + 2 + 1 = 6²
What’s interesting is this:
The sequence mirrors perfectly around n
It contains 2n–1 terms
The symmetry emerges naturally from Excel’s SEQUENCE + ABS logic
It’s simply math expressed through Excel, revealing structure that’s easy to miss on paper but obvious on a spreadsheet.
Excel didn’t just compute a value.
Excel exposed a design.
Activate to view larger image,





Here is a shorter version for your first formula...
=MAP(SEQUENCE(10),LAMBDA(x,SUBSTITUTE(TEXTJOIN("+",,SEQUENCE(,2*x+1,x^2)),"+","=",x+1)))