For the year 2025
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).
今年是 2025 年,2025 这个数满足:
给定正整数 a、b,若将 b 接在 a 后得到的数字 ab 满足 ab=(a+b)2,则称 ab 是一个 2025-数。例如,3025、81 都是 2025-数。请注意,9801 不是 2025-数,因为我们不允许在 a、b 中出现前导零,将 1 接在 98 后的结果是 981。
令 T(n) 为全体 <10n 的 2025-数之和,已知 T(4)=5131。
求 T(16)。
点 这个链接 回到源站。
点 这个链接 回到详细版题目目录。