Preparando MOJI

Present for Vitalik the Philatelist

5000ms 262144K

Description:

Vitalik the philatelist has a birthday today!

As he is a regular customer in a stamp store called 'Robin Bobin', the store management decided to make him a gift.

Vitalik wants to buy one stamp and the store will give him a non-empty set of the remaining stamps, such that the greatest common divisor (GCD) of the price of the stamps they give to him is more than one. If the GCD of prices of the purchased stamp and prices of present stamps set will be equal to 1, then Vitalik will leave the store completely happy.

The store management asks you to count the number of different situations in which Vitalik will leave the store completely happy. Since the required number of situations can be very large, you need to find the remainder of this number modulo 109 + 7. The situations are different if the stamps purchased by Vitalik are different, or if one of the present sets contains a stamp that the other present does not contain.

Input:

The first line of the input contains integer n (2 ≤ n ≤ 5·105) — the number of distinct stamps, available for sale in the 'Robin Bobin' store.

The second line contains a sequence of integers a1, a2, ..., an (2 ≤ ai ≤ 107), where ai is the price of the i-th stamp.

Output:

Print a single integer — the remainder of the sought number of situations modulo 109 + 7.

Sample Input:

3
2 3 2

Sample Output:

5

Sample Input:

2
9 6

Sample Output:

0

Note:

In the first sample the following situations are possible:

  • Vitalik buys the 1-st stamp, the store gives him the 2-nd stamp as a present;
  • Vitalik buys the 3-rd stamp, the store gives him the 2-nd stamp as a present;
  • Vitalik buys the 2-nd stamp, the store gives him the 1-st stamp as a present;
  • Vitalik buys the 2-nd stamp, the store gives him the 3-rd stamp as a present;
  • Vitalik buys the 2-nd stamp, the store gives him the 1-st and 3-rd stamps as a present.

Informação

Codeforces

Provedor Codeforces

Código CF585E

Tags

combinatoricsmathnumber theory

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 09:00:41

Relacionados

Nada ainda