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.

A329239 Numbers k such that the sum of unitary divisors of k is a cube.

Original entry on oeis.org

1, 7, 102, 110, 120, 142, 159, 184, 187, 381, 588, 684, 690, 714, 770, 796, 840, 931, 994, 1034, 1054, 1065, 1113, 1128, 1173, 1240, 1265, 1288, 1293, 1309, 1528, 1633, 1643, 2619, 2667, 3638, 3937, 4280, 4505, 4664, 4788, 4830, 4855, 5176, 5572, 5671, 5730
Offset: 1

Views

Author

Amiram Eldar, Mar 13 2020

Keywords

Examples

			7 is a term since usigma(7) = 8 = 2^3, where usigma is A034448.
102 is a term since usigma(102) = 216 = 6^3.
		

Crossrefs

The unitary version of A020477.

Programs

  • Mathematica
    usigma[1] = 1; usigma[n_] := Times @@ (1 + Power @@@ FactorInteger[n]); Select[Range[10000], IntegerQ @ Surd[usigma [#], 3] &]
  • PARI
    isok(m) = ispower(sumdiv(m, d, if(gcd(d, m/d)==1, d)), 3); \\ Michel Marcus, Mar 15 2020
Showing 1-1 of 1 results.