login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A328051 Numbers m such that sigma(m)/(d(m)*sopf(m)) is an integer, where d is the number of divisors (A000005) and sopf the sum of prime factors without repetition (A008472). 4
20, 35, 42, 54, 140, 189, 195, 207, 209, 276, 378, 464, 470, 500, 506, 510, 527, 540, 608, 660, 672, 741, 846, 864, 875, 899, 923, 945, 989, 1029, 1120, 1276, 1316, 1323, 1334, 1349, 1365, 1519, 1539, 1564, 1595, 1715, 1725, 1736, 1755, 1815, 1880, 1887, 1914, 2058 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
This sequence is motivated by the short fate of A134382.
LINKS
EXAMPLE
For n=20, sigma(20)/(d(20)*sopf(20)) = 42/(6*7) = 1, an integer, so 20 is a term.
MATHEMATICA
f[p_, e_] := (p^(e + 1) - 1)/((e + 1)*(p - 1)); Select[Range[2, 2100], IntegerQ[ Times @@ (f @@@ (fct = FactorInteger[#])) / Plus @@ (fct[[;; , 1]])] &] (* Amiram Eldar, Oct 03 2019 *)
PROG
(PARI) sopf(f) = sum(j=1, #f~, f[j, 1]); \\ A008472
isok(m) = if (m>1, my(f=factor(m)); (sigma(f) % (numdiv(f)*sopf(f))) == 0);
(Magma) [k: k in [2..2100]|IsIntegral(DivisorSigma(1, k)/(#Divisors(k)*(&+PrimeDivisors(k))))]; // Marius A. Burtea, Oct 03 2019
CROSSREFS
Sequence in context: A157426 A325603 A024747 * A081962 A024755 A048022
KEYWORD
nonn
AUTHOR
Michel Marcus, Oct 03 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 06:49 EDT 2024. Contains 371964 sequences. (Running on oeis4.)