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.

A211781 Numbers n such that Sum_(d_A000005(x).

Original entry on oeis.org

2, 3, 4, 5, 7, 11, 13, 17, 19, 23, 27, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 225, 227, 229, 233, 239, 241, 251, 252
Offset: 1

Views

Author

Jaroslav Krizek, Apr 20 2012

Keywords

Comments

Union primes (A000040) and sequence of composite numbers: 4, 27, 225, 252, 672, 1200, ...

Examples

			Number 225 is in sequence because 1/1 + 2/3 + 2/5 + 3/9 + 4/15 + 3/25 + 6/45 + 6/75 = 3 (integer).
		

Programs

  • Mathematica
    t = {}; Do[d2 = Sum[DivisorSigma[0,d]/d, {d, Most[Divisors[n]]}]; If[IntegerQ[d2], AppendTo[t, n]], {n, 2, 252}]; t (* T. D. Noe, Apr 26 2012 *)