OFFSET
1,1
COMMENTS
Bisection of A002387. - Robert G. Wilson v, Jan 24 2017
REFERENCES
R. L. Graham, D. E. Knuth and O. Patashnik, Concrete Mathematics. Addison-Wesley, Reading, MA, 1990, p. 259.
LINKS
Robert G. Wilson v, Table of n, a(n) for n = 1..1000 (terms 1..350 from Alois P. Heinz).
Mike Paterson and Uri Zwick, Overhang, arXiv:0710.2357 [math.HO], 2007.
Eric Weisstein's World of Mathematics, Book Stacking Problem
FORMULA
MATHEMATICA
f[n_] := (k = Floor[ N [ E^(n - EulerGamma) + 1/(2n), 24]] - 2; While[ Floor[ N[ Log[k] + EulerGamma + 1/(2k) - 1/(12k^2) + 1/(120k^4), 24]] < n, k++ ]; k); Table[ f[n], {n, 2, 32, 2} ]
a[n_] := k /. FindRoot[ HarmonicNumber[k] == 2*n, {k, Exp[2*n]}, WorkingPrecision -> 100] // Ceiling; Table[a[n], {n, 1, 100}] (* Jean-François Alcover, Jun 25 2013 *)
CROSSREFS
KEYWORD
nonn,nice
AUTHOR
EXTENSIONS
More terms from Robert G. Wilson v, Dec 06 2001
Title corrected by Jeremy Tan, Sep 12 2020
STATUS
approved