A087460 Least n such that H(n) is closer to an integer than any H(j) with j < n; where H(n) is the harmonic number sum_{i=0..n} 1/i.
2, 3, 4, 10, 11, 30, 83, 226, 4549, 91379, 91380, 248396, 248397, 675213, 4989190, 4989191, 13562026, 13562027, 36865412, 100210580, 2012783315, 5471312310, 40427833595, 40427833596, 109894245428, 812014744421, 812014744422, 2207284924202, 2207284924203
Offset: 2
Keywords
Links
- Steven J. Kifowit, Table of n, a(n) for n = 2..50
- M. B. Villarino, Ramanujan's Approximation to the nth Partial Sum of the Harmonic Series, arXiv:math/0402354v5 [math.CA], 2005.
Programs
-
Mathematica
d = 1; s = 1; n = 2; Do[ While[s = N[s + 1/n, 50]; Abs[Round[s] - s] > d, n++ ]; Print[n]; d = Abs[Round[s] - s]; n++, {i, 2, 18}]
Extensions
Corrected and extended by Steven J. Kifowit, May 26 2015
Comments