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!)
A071865 Smallest k such that the simple continued fraction for Sum(d|k, 1/d) contains exactly n elements. 4
1, 2, 4, 14, 22, 26, 75, 195, 330, 324, 935, 1598, 3422, 3663, 10191, 14066, 12099, 53661, 121555, 182169, 235509, 307615, 633945, 2097595, 2072198, 2643298, 6544282, 8675343, 13670722, 17573794, 85112326, 77295778, 235873898, 362150458, 544042486, 1457255474 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
sum(d|195, 1/d) = 112/65 and 112/65 continued fraction is [1, 1, 2, 1, 1, 1, 1, 3] which contains 8 elements. There is no smaller number than 195 with this property hence a(8)=195.
MATHEMATICA
a = Table[0, {50}]; Do[b = Length[ ContinuedFraction[ Apply[ Plus, 1/Divisors[n]]]]; If[ a[[b]] == 0, a[[b]] = n], {n, 1, 10^7}]
PROG
(PARI) for(n=1, 21, s=1; while(length(contfrac(sumdiv(s, d, 1/d)))<n, s++); print1(s, ", "))
CROSSREFS
Cf. A071862.
Sequence in context: A032309 A008519 A243934 * A127596 A111871 A291079
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Jun 09 2002
EXTENSIONS
More terms from Robert G. Wilson v, Jun 11 2002
a(29)-a(36) from Michel Marcus, Sep 17 2012
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 20 05:07 EDT 2024. Contains 372703 sequences. (Running on oeis4.)