932. 2025

For the year 2025

2025=(20+25)2

Given positive integers a and b, the concatenation ab we call a 2025-number if ab=(a+b)2.
Other examples are 3025 and 81.
Note 9801 is not a 2025-number because the concatenation of 98 and 1 is 981.

Let T(n) be the sum of all 2025-numbers with n digits or less. You are given T(4)=5131.

Find T(16).

932. 2025

今年是 2025 年,2025 这个数满足:

2025=(20+25)2

给定正整数 ab,若将 b 接在 a 后得到的数字 ab 满足 ab=(a+b)2,则称 ab 是一个 2025-数。例如,302581 都是 2025-数。请注意,9801 不是 2025-数,因为我们不允许在 ab 中出现前导零,将 1 接在 98 后的结果是 981

T(n) 为全体 <10n2025-数之和,已知 T(4)=5131

T(16)


这个链接 回到源站。

这个链接 回到详细版题目目录。