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-3 of 3 results.

A227610 Number of ways 1/n can be expressed as the sum of three distinct unit fractions: 1/n = 1/x + 1/y + 1/z satisfying 0 < x < y < z.

Original entry on oeis.org

1, 6, 15, 22, 30, 45, 36, 62, 69, 84, 56, 142, 53, 124, 178, 118, 67, 191, 74, 274, 227, 145, 87, 342, 146, 162, 216, 322, 100, 461, 84, 257, 304, 199, 435, 508, 79, 204, 360, 580, 115, 587, 98, 455, 618, 192, 129, 676, 217, 417, 369, 449, 119, 573, 543, 759, 367, 240, 166, 1236, 102, 261, 857, 428, 568, 717, 115, 537, 460, 1018, 155, 1126, 112, 276, 839
Offset: 1

Views

Author

Robert G. Wilson v, Jul 17 2013

Keywords

Comments

See A073101 for the 4/n conjecture due to Erdős and Straus.

Examples

			a(1)=1 because 1 = 1/2 + 1/3 + 1/6;
a(2)=6 because 1/2 = 1/3 + 1/7 + 1/42 = 1/3 + 1/8 + 1/24 = 1/3 + 1/9 + 1/18 = 1/3 + 1/10 + 1/15 = 1/4 + 1/5 + 1/20 = 1/4 + 1/6 + 1/12;
a(3)=15 because 1/3 = 1/x + 1/y + 1/z presented as {x,y,z}: {4,13,156}, {4,14,84}, {4,15,60}, {4,16,48}, {4,18,36}, {4,20,30}, {4,21,28}, {5,8,120}, {5,9,45}, {5,10,30}, {5,12,20}, {6,7,42}, {6,8,24}, {6,9,18}, {6,10,15}; etc.
		

Crossrefs

Cf. A227611 (2/n), A075785 (3/n), A073101 (4/n), A075248 (5/n), A227612.

Programs

  • Mathematica
    f[n_] := Length@ Solve[1/n == 1/x + 1/y + 1/z && 0 < x < y < z, {x, y, z}, Integers]; Array[f, 70]

A075785 Number of ways to express 3/n as Egyptian fractions in just three terms.

Original entry on oeis.org

0, 1, 1, 3, 7, 6, 6, 16, 15, 15, 13, 22, 8, 27, 30, 26, 21, 45, 8, 59, 36, 29, 20, 62, 32, 45, 69, 67, 27, 84, 14, 59, 56, 44, 129, 142, 15, 45, 53, 130, 31, 124, 21, 131, 178, 40, 29, 118, 38, 88, 67, 102, 43, 191, 102, 180, 74, 57, 43, 274, 21, 75, 227, 86, 144, 145, 23, 121, 87
Offset: 1

Views

Author

Robert G. Wilson v, Aug 18 2002

Keywords

Crossrefs

Programs

  • Mathematica
    Needs["MyOwn`Egypt`"]; Table[ Length[ EgyptianFraction[3/n, Method -> Lexicographic, MaxTerms -> 3, MinTerms -> 3, Duplicates -> Disallow, OutputFormat -> Plain]], {n, 5, 70}]
    f[n_] := Length@ Solve[3/n == 1/x + 1/y + 1/z && 0 < x < y < z, {x, y, z}, Integers]; Array[f, 69] (* Robert G. Wilson v, Jul 17 2013 *)

A347566 Number of ways 1/n can be expressed as the sum of five distinct unit fractions: 1/n = 1/p + 1/q + 1/r + 1/s + 1/t, with 0 < p < q < r < s < t.

Original entry on oeis.org

72, 2293, 15304, 47314, 112535, 190665, 368474, 577623, 925336, 1164976, 1478492, 2051830, 2240745, 3789424, 4989958, 4672559, 4467275, 7104589, 6548335, 13844524, 13580094, 10633142, 10451326, 20262957, 16621976, 18697914, 25613090, 27523671
Offset: 1

Views

Author

Jud McCranie, Sep 06 2021

Keywords

Crossrefs

Showing 1-3 of 3 results.