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!)
A065300 Numbers n such that sum of divisors is a squarefree number. 6
1, 2, 4, 5, 8, 9, 13, 16, 18, 20, 25, 26, 29, 36, 37, 41, 45, 49, 50, 61, 64, 72, 73, 74, 80, 100, 101, 104, 109, 113, 116, 117, 121, 122, 128, 137, 144, 146, 148, 157, 169, 173, 180, 181, 193, 196, 200, 208, 218, 225, 229, 234, 242, 244, 256, 257, 261, 277, 281 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Numbers n such that sigma(n) divides primorial(n), that is, A002110(n) mod A000203(n) = 0. - Gary Detlefs, May 02 2012
LINKS
FORMULA
Solutions to |mu(sigma(x))| = 1.
EXAMPLE
For m=100, sigma(100) = 217 = 7*31.
MATHEMATICA
Select[Range@ 300, SquareFreeQ@ DivisorSigma[1, #] &] (* or *)
Select[Range@ 300, Abs@ MoebiusMu@ DivisorSigma[1, #] == 1 &] (* Michael De Vlieger, Mar 18 2017 *)
PROG
(PARI) { n=0; for (m = 1, 10^9, if (abs(moebius(sigma(m)))==1, write("b065300.txt", n++, " ", m); if (n==1000, return)) ) } \\ Harry J. Smith, Oct 15 2009
(PARI) for(n=1, 300, if(issquarefree(sigma(n)), print1(n, ", "))) \\ Indranil Ghosh, Mar 19 2017
(Python)
from sympy import mobius, divisor_sigma
from sympy.ntheory.factor_ import core
[n for n in range(1, 301) if abs(mobius(divisor_sigma(n, 1))) == 1] #* or *#
[n for n in range(1, 301) if core(divisor_sigma(n, 1)) == divisor_sigma(n, 1)] # Indranil Ghosh, Mar 19 2017
CROSSREFS
Sequence in context: A101881 A143989 A064573 * A080403 A280050 A360772
KEYWORD
nonn
AUTHOR
Labos Elemer, Oct 29 2001
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 19 16:21 EDT 2024. Contains 371794 sequences. (Running on oeis4.)