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.

Showing 1-1 of 1 results.

A337920 Numbers k such that d(k) = d(k+1), where d(k) = A058312(k) is the denominator of the k-th alternating harmonic number.

Original entry on oeis.org

5, 9, 11, 13, 17, 20, 21, 23, 25, 29, 32, 33, 35, 37, 38, 39, 41, 43, 44, 45, 47, 49, 50, 51, 53, 54, 55, 56, 57, 59, 61, 62, 64, 65, 67, 68, 69, 71, 73, 75, 77, 79, 81, 83, 84, 85, 86, 89, 90, 91, 92, 93, 94, 95, 97, 98, 101, 104, 105, 107, 109, 110, 111, 113
Offset: 1

Views

Author

Amiram Eldar, Jan 29 2021

Keywords

Comments

The asymptotic density of this sequence is 1 (Wu and Chen, 2019).

Examples

			5 is a term since A058312(5) = A058312(6) = 60.
		

Crossrefs

Cf. A058312, A065454 (analogous with denominators of harmonic numbers).

Programs

  • Mathematica
    d[n_] := Denominator @ Sum[(-1)^(k + 1)/k, {k, 1, n}]; Position[Partition[d[Range[120]], 2, 1], {x_, x_}] // Flatten
Showing 1-1 of 1 results.