From 124b8944cd7bd2ce5218d3453c92305f8b03a97e Mon Sep 17 00:00:00 2001 From: sidemt Date: Sun, 12 Jun 2022 01:09:14 +0900 Subject: [PATCH] fix(curriculum): add MathJax syntax in Project Euler Problem 326 (#46458) --- .../project-euler/problem-326-modulo-summations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-326-modulo-summations.md b/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-326-modulo-summations.md index ededd29e91e..03e4f6359f9 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-326-modulo-summations.md +++ b/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-326-modulo-summations.md @@ -8,7 +8,7 @@ dashedName: problem-326-modulo-summations # --description-- -Let an be a sequence recursively defined by: $a_1 = 1$, $\displaystyle a_n = \left(\sum_{k = 1}^{n - 1} k \times a_k\right)\bmod n$. +Let $a_n$ be a sequence recursively defined by: $a_1 = 1$, $\displaystyle a_n = \left(\sum_{k = 1}^{n - 1} k \times a_k\right)\bmod n$. So the first 10 elements of $a_n$ are: 1, 1, 0, 3, 0, 3, 5, 4, 1, 9.