OFFSET
1,1
COMMENTS
A result of Erdős and Selfridge implies that A055204(n) only repeats at squares, so one can simply sum 1/A055204(n)^(1/2) for all n other than squares greater than 1. The number of elements of A387186 up to x is asymptotic to this constant times x^(1/2). Conjecturally, the same is true for A388851 (see also Erdős problem #374). The series converges at an exponentially fast rate.
LINKS
Thomas Bloom, Problem 374, Erdős Problems.
Paul Erdős and Ron L. Graham, On products of factorials, Bull. Inst. Math. Acad. Sinica 4 (1976), pp. 337-355.
Terence Tao, Products of consecutive integers with unusual anatomy, arXiv:2603.27990 [math.NT], 2026. See p. 7 (Section 1.3).
EXAMPLE
3.70975123389922236888796146684207888217443645...
MAPLE
split := r -> ListTools:-Reverse(convert(floor(r), base, 10)):
core := n -> n / expand(numtheory:-nthpow(n, 2)):
A389117 := proc(upto) local total, cofact, n, term;
total := 0.0; cofact := 1;
for n from 2 to upto do
cofact := core(cofact * n);
if not issqr(n) then
term := evalf(1 / sqrt(cofact));
total := total + term;
fi;
od;
1 + total end:
Digits := 200: A389117(1000): split(% * 10^104); # Peter Luschny, Sep 24 2025
PROG
(PARI) 1 + suminf(n=2, if(issquare(n), 0, 1/sqrt(core(n!)))) \\ Hugo Pfoertner, Sep 23 2025
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Terence Tao, Sep 23 2025
STATUS
approved
