A358557 Numbers k for which denominator(H(k)) < LCM(1..k), where harmonic numbers H(k) = Sum_{i=1..k} 1/i = r(k)/q(k).
6, 7, 8, 18, 19, 20, 21, 22, 23, 24, 25, 26, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 100, 101, 102
Offset: 1
Keywords
Links
- Yifan Xie, Table of n, a(n) for n = 1..10000
- Art of Problem Solving Website, The Mathematical Association of America, Entry 2022 AMC12/AHSME
Crossrefs
Programs
-
Mathematica
Select[Range[100], Denominator[HarmonicNumber[#]] < LCM @@ Range[#] &] (* Amiram Eldar, Nov 25 2022 *)
-
PARI
isok(n) = lcm(vector(n, i, i)) <> denominator(sum(i=1, n, 1/i)); \\ Thomas Scheuerle, Nov 23 2022
Formula
A110566(a(n)) > 1. - Thomas Scheuerle, Nov 23 2022
Comments