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.

A194948 Numbers k such that sum of aliquot divisors of k, sigma(k) - k, is a cube.

Original entry on oeis.org

1, 2, 3, 5, 7, 10, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 49, 53, 56, 59, 61, 67, 69, 71, 73, 76, 79, 83, 89, 97, 101, 103, 107, 109, 113, 122, 127, 131, 133, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233
Offset: 1

Views

Author

Martin Renner, Oct 13 2011

Keywords

Comments

For prime numbers, the sum of their aliquot divisors is exactly 1 = 1^3.

Examples

			a(6) = 10, since the sum of aliquot divisors 1 + 2 + 5 = 8 = 2^3.
		

Crossrefs

Union of A000040 and A048698.

Programs

  • Maple
    for n do s:=numtheory[sigma](n)-n; if root(s,3)=trunc(root(s,3)) then print(n); fi; od:
  • Mathematica
    Select[Range[250],IntegerQ[Power[DivisorSigma[1,#]-#, (3)^-1]]&] (* Harvey P. Dale, Nov 25 2011 *)