login
A394011
Decimal expansion of Product_{p prime} (1-1/p)^2 * (1 + Sum_{k >= 0} (2^k + 1)/p^(2^k)).
1
6, 8, 3, 9, 8, 8, 1, 4, 1, 4, 3, 7, 8, 0, 5, 9, 3, 0, 4, 3, 5, 5, 1, 0, 0, 5, 3, 7, 7, 6, 3, 5, 3, 1, 9, 3, 2, 4, 3, 9, 3, 0, 4, 2, 2, 8, 0, 6, 6, 9, 5, 3, 3, 5, 4, 6, 4, 8, 7, 8, 0, 0, 3, 4, 0, 1, 0, 3, 7, 6, 6, 5, 7, 8, 0, 0, 1, 6, 8, 4, 2, 8, 3, 4, 7, 5, 0, 3, 5, 7, 1, 2, 6, 3, 7, 9, 0, 3, 7, 1, 5, 0, 1, 7, 5
OFFSET
0,1
COMMENTS
The asymptotic probability that the product of two positive integers selected independently at random is an exponentially 2^n number (A138302).
EXAMPLE
0.683988141437805930435510053776353193243930422806695...
PROG
(PARI) c(m) = prodeulerrat((1-1/p)^2 * (1 + sum(k = 0, m, (2^k+1)/p^(2^k))));
{my(c1 = 0, c2 = 1, m = 1); while(c2 != c1, c1 = c2; c2 = c(m); m++); c2}
CROSSREFS
Cf. A138302, A065473 (squarefree analog), A394004 (exponentially odd analog), A394008 (cubefree analog).
Sequence in context: A054042 A184084 A346402 * A255728 A272488 A396438
KEYWORD
nonn,cons
AUTHOR
Amiram Eldar, Mar 06 2026
STATUS
approved