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.

A050205 Triangle read by rows: number of terms in unit fraction representation of k/n using the greedy algorithm, 1<=k<=n-1.

Original entry on oeis.org

1, 1, 2, 1, 1, 2, 1, 2, 2, 3, 1, 1, 1, 2, 2, 1, 2, 3, 2, 3, 3, 1, 1, 2, 1, 2, 2, 3, 1, 2, 1, 2, 2, 2, 3, 3, 1, 1, 2, 2, 1, 2, 2, 3, 3, 1, 2, 2, 2, 3, 2, 3, 4, 4, 4, 1, 1, 1, 1, 2, 1, 2, 2, 2, 2, 3, 1, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 4, 1, 1, 2, 2, 2, 3, 1, 2, 2, 3, 3, 3, 4, 1, 2, 1, 2, 1, 2, 3, 2, 2, 2, 3
Offset: 2

Views

Author

Keywords

Examples

			2/3 = 1/2 + 1/6. So T(3,2) = 2.
n\k | 1  2  3  4  5  6  7  8
----*------------------------
  2 | 1;
  3 | 1, 2;
  4 | 1, 1, 2;
  5 | 1, 2, 2, 3;
  6 | 1, 1, 1, 2, 2;
  7 | 1, 2, 3, 2, 3, 3;
  8 | 1, 1, 2, 1, 2, 2, 3;
  9 | 1, 2, 1, 2, 2, 2, 3, 3;
		

Crossrefs

Cf. A050206, A050210 (Largest denominator), A260618.

Extensions

Offset changed to 2 by Seiichi Manyama, Sep 18 2022