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!)
A128840 Denominators of the continued fraction convergents of the decimal concatenation of the odd natural numbers. 0
7, 15, 22, 59, 81, 1031, 1112, 3255, 10877, 14132, 81537, 95669, 177206, 272875, 722956, 3164699, 7052354, 45478823, 98010000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The 19th convergent breaks down at number 95 so a 16 digit ratio gives 91 digits accuracy!
LINKS
FORMULA
The odd natural numbers 1,3,5.. are concatenated and then preceded by a decimal point to create the fraction N = .1357911131517... . This number is then evaluated with n=1,m=steps to iterate,x = N, a(0)=floor(N) using the loop: do a(n)=floor(x) x=1/(x-a(n)) n=n+1 loop until n=m
EXAMPLE
The 19th convergent 13308887/98010000 =
0.13579111315171921232527293133353739414345474951535557596163656769717375777981\
8385878991939598000...
PROG
(PARI) catodd(n) = f="."; forstep(x=1, n, 2, a=concat(f, Str(x))); f=eval(f) cfrac2(m, f) = { default(realprecision, 1000); cf = vector(m+10); cf = contfrac(f); for(m1=1, m-1, r=cf[m1+1]; forstep(n=m1, 1, -1, r = 1/r; r+=cf[n]; ); numer=numerator(r); denom=denominator(r); print1(denom", "); ) }
CROSSREFS
Sequence in context: A082658 A022389 A041225 * A041935 A041092 A367907
KEYWORD
frac,nonn,base
AUTHOR
Cino Hilliard, Apr 16 2007
EXTENSIONS
Edited by Charles R Greathouse IV, Apr 25 2010
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 June 1 14:02 EDT 2024. Contains 373023 sequences. (Running on oeis4.)