OFFSET
1,4
REFERENCES
Jean-Marie De Koninck and Aleksandar Ivić, Topics in Arithmetical Functions, North-Holland Publishing Company, Amsterdam, Netherlands, 1980. See pp. 13-16, Theorem 1.3.
Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003. See section 5.1, Abelian group enumeration constants, p. 274.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
László Tóth, Alternating Sums Concerning Multiplicative Arithmetic Functions, Journal of Integer Sequences, Vol. 20 (2017), Article 17.2.1. See section 4.8, pp. 27-28.
FORMULA
a(n) = denominator(Sum_{k=1..n} 1/A000688(k)).
MATHEMATICA
Denominator[Accumulate[Table[1/FiniteAbelianGroupCount[n], {n, 1, 100}]]]
PROG
(PARI) f(n) = vecprod(apply(numbpart, factor(n)[, 2]));
list(nmax) = {my(s = 0); for(k = 1, nmax, s += 1 / f(k); print1(denominator(s), ", "))};
CROSSREFS
KEYWORD
nonn,easy,frac
AUTHOR
Amiram Eldar, Dec 21 2024
STATUS
approved