757. Stealthy Numbers

A positive integer N is stealthy, if there exist positive integers a, b, c, d such that ab=cd=N and a+b=c+d+1.
For example, 36=4×9=6×6 is stealthy.

You are also given that there are 2851 stealthy numbers not exceeding 106.

How many stealthy numbers are there that don't exceed 1014?

757. 隐形数

若存在正整数 abcd 满足 ab=cd=Na+b=c+d+1,则称该正整数 N隐形数
例如,36=4×9=6×6 是隐形数。

已知:106 的隐形数共有 2851 个。

1014 的隐形数有多少个?


这个链接 回到源站。

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