OFFSET
1,1
COMMENTS
The larger counterparts are in A307052.
Includes all the pairs of the form {F(k)-1, F(k)} with 0 < k, where F(k) = 2^(2^k) + 1, the k-th Fermat number, is prime.
Includes all the pairs of the form {(F(k)-1)*F(m), F(k)*(F(m)-1)} with 0 < k < m, where both F(k) and F(m) are primes.
a(17) > 4*10^12. - Giovanni Resta, Mar 24 2019
MATHEMATICA
f[p_, e_] := p^e + (-1)^e; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; s={}; Do[m = a[n]; If[m > n && a[m] == n, AppendTo[s, n]], {n, 1, 10^7}]; s
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, Mar 21 2019
EXTENSIONS
a(16) from Giovanni Resta, Mar 24 2019
STATUS
approved