cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A091532 Where the number of terms in simple continued fraction for H(j) exceeds all H(i), j>i and H(k) is the k-th harmonic number.

Original entry on oeis.org

1, 2, 3, 5, 7, 8, 9, 13, 16, 17, 19, 23, 25, 26, 28, 29, 35, 36, 43, 45, 48, 49, 54, 57, 62, 72, 73, 79, 88, 90, 91, 99, 103, 108, 110, 113, 115, 116, 118, 125, 128, 148, 149, 157, 163, 168, 171, 172, 184, 193, 199, 205, 209, 234, 240, 243, 259, 265, 269, 270, 281, 283
Offset: 1

Views

Author

Robert G. Wilson v, Jan 19 2004

Keywords

Comments

Where A055573 increases.

Crossrefs

Programs

  • Mathematica
    t = Table[ Length[ ContinuedFraction[ HarmonicNumber[n]]], {n, 1, 299}]; a = {1}; Do[ If[ t[[n]] > t[[a[[ -1]]]], AppendTo[a, n]], {n, 1, 299}]; a