#Lutece0072. Amicable Pairs

Amicable Pairs

Migrated from Lutece 72 Amicable Pairs

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

A pair of integers (aa,bb) is called an amicable pair if the sum of the proper divisors of a equals b, and vice versa. For example, (220220, 284284) is an amicable pair, since the proper divisors of 220220 are 11, 22, 44, 55, 1010, 1111, 2020, 2222, 4444, 5555 and 110110, and 11 + 22 + 44 + 55 + 1010 + 1111 + 2020 + 2222 + 4444 + 5555 + 110=284110 = 284, while the proper divisors of 284284 are 11, 22, 44, 7171 and 142142 and their sum is 220220.

Given KK, output the number of different amicable pairs (a,ba,b) where 1aK1 \leq a \leq K and 1bK1 \leq b \leq K. Note that (a,ba,b) is considered the same pair as (b,ab,a).

  • Integer aa is a proper divisor of bb if 0<a<b0 < a < b and there exists some integer kk such that aa * k=bk = b.

Input

The first line is an integer T, number of test cases. T lines follow, each contains an integer K.

  • 1T10001 \leq T \leq 1000
  • 1K1000001 \leq K \leq 100000

Output

For each case, output on a line the number of different amicable pairs satisfying the constraint above.

Samples

2
220
284
2
3

Resources

The 5th UESTC Programming Contest Preliminary