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.

A224910 Positive integer solutions to 1/p + 1/q + 1/r = 1 by lexicographic order.

Original entry on oeis.org

2, 3, 6, 2, 4, 4, 3, 3, 3
Offset: 0

Views

Author

Jean-François Alcover, Apr 19 2013

Keywords

Examples

			The sequence consists of the three triples {2, 3, 6}, {2, 4, 4}, {3, 3, 3}.
		

Crossrefs

Cf. A030659.

Programs

  • Mathematica
    {p, q, r} /. {ToRules @ Reduce[0 < p <= q <= r <= 6 && 1/p + 1/q + 1/r == 1, {p, q, r}, Integers]} // Flatten