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.

A048242 Numbers that are not the sum of two abundant numbers (not necessarily distinct).

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 31, 33, 34, 35, 37, 39, 41, 43, 45, 46, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 95, 97, 99, 101, 103, 105, 107, 109
Offset: 1

Views

Author

Jud McCranie, Dec 11 1999

Keywords

Comments

a(1456) = 20161 is the last term.
a(38) = 46 is the largest even term. - Alonso del Arte, Sep 11 2016

Examples

			12 is abundant, so 24=12+12 is not a term.
		

References

  • Problem 13, ABACUS.
  • Thomas R. Parkin and Leon J. Lander, Abundant numbers, Aerospace Corporation, Los Angeles, 1964, 119 unnumbered pages. Copy deposited in UMT file.
  • Joe Roberts, Lure of the Integers, MAA Spectrum, 1992, p. 273, integer 20161.
  • David Wells, The Penguin Dictionary of Curious and Interesting Numbers, Penguin Book, 1986, p. 175, entry 20161.

Crossrefs

Complement of A048260.
Cf. A005101.

Programs

  • PARI
    setminus([1..20161], setbinop((x,y)->x+y, select(k->sigma(k,-1)>2,[1..16695]))) \\ Charles R Greathouse IV, Oct 10 2017