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.

A329731 Numbers k such that the sum of distinct prime divisors of k divides the sum of unitary divisors of k.

Original entry on oeis.org

12, 15, 18, 35, 36, 42, 56, 60, 63, 66, 72, 75, 90, 95, 108, 110, 114, 119, 126, 132, 135, 143, 144, 147, 153, 168, 180, 192, 195, 209, 220, 245, 250, 258, 260, 264, 287, 288, 290, 294, 297, 300, 308, 312, 315, 319, 322, 323, 324, 338, 342, 360, 375, 377, 378
Offset: 1

Views

Author

Amiram Eldar, Nov 19 2019

Keywords

Comments

The unitary version of A070222.

Examples

			12 is in the sequence since its sum of unitary divisors, 1 + 3 + 4 + 12 = 20, is divisible by its sum of distinct prime divisors, 2 + 3 = 5.
		

Crossrefs

Programs

  • Mathematica
    aQ[n_] := Divisible[Times @@ (1 + Power @@@ (f = FactorInteger[n])), Total[First /@ f]]; Select[Range[2, 400], aQ]