login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A226187 Least positive integer k such that 1 + 1/2 + ... + 1/k > n/3. 1
1, 1, 1, 2, 3, 4, 6, 8, 11, 16, 22, 31, 43, 60, 83, 116, 162, 227, 316, 441, 616, 859, 1199, 1674, 2336, 3260, 4550, 6349, 8861, 12367, 17259, 24088, 33617, 46916, 65477, 91380, 127531, 177984, 248397, 346666, 483812, 675214, 942336, 1315136, 1835421, 2561536, 3574912, 4989191, 6962977, 9717617 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
Conjecture: a(n+1)/a(n) converges to 1.39...
This constant is probably exp(1/3) = 1.395612425086089528628..., see A004080. - Ralf Stephan, Jun 03 2013
LINKS
EXAMPLE
a(10) = 16 because 1 + 1/2 + ... + 1/15 < 10/3 < 1 + 1/2 + ... + 1/16.
MATHEMATICA
z = 32; f[n_] := 1/n; Do[s = 0; a[n] = NestWhile[# + 1 &, 1, ! (s += f[#]) >= n/3 &], {n, 1, z}]; m = Map[a, Range[z]]
PROG
a(n)=local(s, k); s=0; k=1; while(s<=n/3, s=s+1/k; k++); k-1
CROSSREFS
Sequence in context: A321567 A066806 A271486 * A294922 A317669 A208887
KEYWORD
nonn
AUTHOR
Clark Kimberling, May 30 2013
EXTENSIONS
More terms from Jean-François Alcover, Jun 05 2013
Deleted obsolete b-file. - N. J. A. Sloane, Jan 04 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)