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!)
A364872 Lexicographically earliest continued fraction which is its own unit fraction series. 2
2, 1, 2, 2, 5, 95, 137447, 19092121105, 1456654254113777258001, 8728918703159963392919895262580124849062181 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Earliest infinite sequence {a0,a1,a2,a3,...} such that: a0+1/(a1+1/(a2+1/(a3+...))) = 1/a0 + 1/a1 + 1/a2 + 1/a3 + ...
There are infinitely many real numbers whose continued fraction is also their unit fraction series - they are dense on the interval (2,oo).
LINKS
EXAMPLE
The partial continued fraction must always be strictly larger than the partial unit fractions:
[1] cannot be since 1 = 1.
[2] can be since 2 > 1/2.
[2,1] can be since 2+1/1 > 1/2+1/1.
[2,1,1] cannot be since 2+1/(1+1/1) = 1/2+1/1+1/1.
[2,1,2] can be since 2+1/(1+1/2) > 1/2+1/1+1/2.
...
sum(1/a[n]) = 2.71053359137351078733864566... (A364873).
PROG
(PARI)
cf(a) = my(m=contfracpnqn(a)); m[1, 1]/m[2, 1];
uf(a) = sum(i=1, #a, 1/a[i]);
A364872(N) = {a=[2]; for(i=2, N, a=concat(a, if(cf(a)==uf(a), a[i-1], ceil(1/(cf(a)-uf(a))))); while(cf(a)<=uf(a), a[i]++)); a};
CROSSREFS
Cf. A364873.
Sequence in context: A340059 A095291 A285003 * A284002 A093659 A306714
KEYWORD
nonn,cofr
AUTHOR
Rok Cestnik, Aug 11 2023
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 27 16:49 EDT 2024. Contains 372020 sequences. (Running on oeis4.)