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.

A028229 Call m Egyptian if we can partition m = x_1+x_2+...+x_k into positive integers x_i such that Sum_{i=1..k} 1/x_i = 1; sequence gives all non-Egyptian numbers.

Original entry on oeis.org

2, 3, 5, 6, 7, 8, 12, 13, 14, 15, 19, 21, 23
Offset: 1

Views

Author

Keywords

Comments

Graham showed that every number >=78 is strict-sense Egyptian.

Examples

			1=1/3+1/3+1/3, so 3+3+3=9 is Egyptian.
		

References

  • J. D. E. Konhauser et al., Which Way Did the Bicycle Go?, MAA 1996, p. 147.
  • See also R. K. Guy, Unsolved Problems Number Theory, Sect. D11.

Crossrefs

Cf. A051882. Complement gives A125726.

Programs

  • Mathematica
    egyptianQ[n_] := Select[ IntegerPartitions[n], Total[1/#] == 1 &, 1] =!= {}; A028229 = Reap[ Do[ If[ !egyptianQ[n], Sow[n]], {n, 1, 40}]][[2, 1]] (* Jean-François Alcover, Feb 23 2012 *)
Showing 1-1 of 1 results.