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!)
A280013 Numbers k such that sum of squarefree divisors of k > sum of squarefree divisors of m for all m < k. 5

%I #76 Jan 07 2024 01:49:01

%S 1,2,3,5,6,10,14,21,22,26,30,42,66,78,102,114,130,138,170,174,186,210,

%T 318,330,390,462,510,546,570,690,798,858,870,930,1110,1218,1230,1290,

%U 1410,1554,1590,1722,1770,1830,1974,2010,2130,2190,2310,2730,3390,3570,3990,4290,4830,5610

%N Numbers k such that sum of squarefree divisors of k > sum of squarefree divisors of m for all m < k.

%C Numbers k such that psi(rad(k)) > psi(rad(m)) for all m < k, where psi() is the Dedekind psi function (A001615) and rad() is the squarefree kernel (A007947).

%C Numbers k such that Sum_{d|k} mu(d)^2*d > Sum_{d|m} mu(d)^2*d for all m < k, where mu() is the Moebius function (A008683).

%C All terms are squarefree. - _Robert Israel_, Apr 19 2017

%H Robert Israel, <a href="/A280013/b280013.txt">Table of n, a(n) for n = 1..500</a>

%H <a href="/index/Su#sums_of_divisors">Index entries for sequences related to sums of divisors</a>

%p ssd:= n -> convert(select(numtheory:-issqrfree,numtheory:-divisors(n)),`+`):

%p M:= 0: A:= NULL:

%p for n from 1 to 10^5 do

%p r:= ssd(n);

%p if r > M then M:= r; A:= A, n fi

%p od:

%p A; # _Robert Israel_, Apr 19 2017

%t mx = 0; t = {}; Do[u = DivisorSum[n, # &, SquareFreeQ[#] &]; If[u > mx, mx = u; AppendTo[t, n]], {n, 6000}]; t

%o (Python)

%o from sympy.ntheory.factor_ import core

%o from sympy import divisors

%o def s(n): return sum(list(filter(lambda i: core(i) == i, divisors(n))))

%o def ok(n):

%o m=1

%o while m<n:

%o if not s(n)>s(m): return False

%o m+=1

%o return True # _Indranil Ghosh_, Apr 16 2017

%Y Cf. A001615, A002093, A002182, A007947, A008683, A034090, A048250, A174572.

%K nonn

%O 1,2

%A _Ilya Gutkovskiy_, Apr 14 2017

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 05:56 EDT 2024. Contains 371964 sequences. (Running on oeis4.)