The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A128599 a(n) = the numerator of the continued fraction [[n/1];[n/2],[n/3],..,[n/n]] = the numerator of [[n/n];[n/(n-1)],[n/(n-2)],..,[n/1]], where [x] is floor(x). 3
1, 3, 7, 22, 43, 170, 321, 1127, 2816, 9221, 16403, 90121, 157741, 475003, 1377765, 5194616, 8925845, 41509031, 70873504, 314321071, 846062365, 2349224135, 3973214615, 25816158418, 53403343055, 145093944173, 373986049879 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MAPLE
A128599 := proc(n) local a, i ; a := 1 ; for i from n-1 to 1 by -1 do a := floor(n/i)+1/a ; od ; RETURN(numer(a)) ; end: for n from 1 to 40 do printf("%d, ", A128599(n)) ; od ; # R. J. Mathar, Jun 02 2007
MATHEMATICA
Table[Numerator[FromContinuedFraction[Table[Floor[n/i], {i, 1, n}]]], {n, 1, 30}] (* Stefan Steinerberger, Jun 02 2007 *)
CROSSREFS
Sequence in context: A174230 A158236 A174942 * A182174 A080882 A229807
KEYWORD
frac,nonn
AUTHOR
Leroy Quet, Mar 12 2007
EXTENSIONS
More terms from Stefan Steinerberger and R. J. Mathar, Jun 02 2007
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 May 17 12:26 EDT 2024. Contains 372600 sequences. (Running on oeis4.)