Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このシリーズの計算方法Sn=1*1+2*2+3*3+...+n*n where (n>1)。 ヒントを教えてください
Sn=1*1+2*2+3*3+...+n*n where (n>1)
このページから、次の式を使用できます
http://math.stackexchange.comに数学の質問を投稿してください。SO は、プログラミング関連の質問用です。
ウィキペディアによると
S = n * (n + 1) * (2*n + 1) / 6
これは帰納法を使って簡単に証明できます。