login
A378679
a(n) = denominator(Sum_{k=1..n} 1/P(k)), where P(k) = A006530(k) is the greatest prime dividing k for k >= 2, and P(1) = 1.
2
1, 2, 6, 3, 15, 15, 105, 210, 70, 70, 770, 2310, 30030, 30030, 30030, 15015, 255255, 255255, 4849845, 4849845, 4849845, 4849845, 111546435, 37182145, 7436429, 7436429, 22309287, 22309287, 646969323, 3234846615, 100280245065, 200560490130, 200560490130, 200560490130
OFFSET
1,2
COMMENTS
See A378678 for more details.
LINKS
FORMULA
a(n) | A034386(n).
MATHEMATICA
Denominator@ Accumulate[Table[1/FactorInteger[n][[-1, 1]], {n, 1, 34}]]
PROG
(PARI) lista(nmax) = {my(s = 1); print1(1, ", "); for(n = 2, nmax, f = factor(n); s += 1/f[#f~, 1]; print1(denominator(s), ", ")); }
CROSSREFS
Cf. A006530, A034386, A057155, A378678 (numerators).
Sequence in context: A379368 A121566 A056839 * A302033 A337643 A379370
KEYWORD
nonn,easy,frac
AUTHOR
Amiram Eldar, Dec 03 2024
STATUS
approved