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!)
A353244 Record values of A070266. 1
1, 2, 5, 12, 13, 50, 61, 68, 198, 1090, 1812, 2362, 32334, 1517757, 4150055, 8850618, 10459960, 34693154, 80385407, 277184250, 316848842, 426258508, 2150821469, 2901738400, 49091889811, 331178405563 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The corresponding indices are in A353243.
LINKS
FORMULA
a(n) = A070266(A353243(n)).
MATHEMATICA
Union @ FoldList[Max, Table[Max[ContinuedFraction[HarmonicNumber[n]]], {n, 1, 10^4}]]
PROG
(Python)
from itertools import count, islice
from fractions import Fraction
from sympy.ntheory.continued_fraction import continued_fraction
def A353244_gen(): # generator of terms
k, c = Fraction(), 0
for n in count(1):
k += Fraction(1, n)
if c < (m := max(continued_fraction(k))):
yield (c := m)
A353244_list = list(islice(A353244_gen(), 10)) # Chai Wah Wu, Apr 08 2022
CROSSREFS
Sequence in context: A085227 A324601 A305310 * A039586 A352785 A114217
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, Apr 08 2022
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 July 13 15:41 EDT 2024. Contains 374284 sequences. (Running on oeis4.)