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!)
A341646 Numbers with a strictly superior squarefree divisor. 26

%I #18 Jul 24 2023 05:39:19

%S 2,3,5,6,7,10,11,12,13,14,15,17,18,19,20,21,22,23,24,26,28,29,30,31,

%T 33,34,35,37,38,39,40,41,42,43,44,45,46,47,50,51,52,53,55,56,57,58,59,

%U 60,61,62,63,65,66,67,68,69,70,71,73,74,75,76,77,78,79,80

%N Numbers with a strictly superior squarefree divisor.

%C We define a divisor d|n to be strictly superior if d > n/d. Strictly superior divisors are counted by A056924 and listed by A341673.

%C This is a subsequence of A007916, i.e., no perfect powers appear here. [For perfect powers n, a supposed strictly superior squarefree divisor d=p*q*r... with distinct primes p,q,r,s... has a complementary divisor n/d=p^i*q^j*r^k*s*... with i,j,k>=1, so the complementary divisor is at least as large as d, a contradiction.] Entries in A007916 but not in here are 48, 54, 72, 96, 108, 160, 162, 192,... - _R. J. Mathar_, Jul 07 2023

%C Is this a duplicate of A089105? - _R. J. Mathar_, Jul 24 2023

%e 60 has three strictly superior squarefree divisors {10,15,30} so 60 is in the sequence.

%p isA341646 := proc(n)

%p local d ;

%p for d in numtheory[divisors](n) do

%p if d>n/d then

%p if issqrfree(d) then

%p return true ;

%p end if;

%p end if;

%p end do:

%p false ;

%p end proc:

%p for n from 2 to 100 do

%p if isA341646(n) then

%p printf("%d,",n) ;

%p end if;

%p end do: # _R. J. Mathar_, Jul 07 2023

%t Select[Range[100],Function[n,Select[Divisors[n],SquareFreeQ[#]&&#>n/#&]!={}]]

%Y The version for prime instead of squarefree divisors is A064052.

%Y The version for prime-power instead of squarefree divisors is the complement of A051283.

%Y The weakly superior version is the complement of A059172.

%Y The version for odd instead of squarefree divisors is A116883.

%Y These are the positions of nonzero terms in A341595.

%Y The complement is A341645.

%Y A005117 lists squarefree numbers.

%Y A038548 counts superior (or inferior) divisors.

%Y A056924 counts strictly superior (or strictly inferior) divisors.

%Y A140271 selects the smallest strictly superior divisor.

%Y A207375 list central divisors.

%Y A341673 lists strictly superior divisors.

%Y - Inferior: A033676, A063962, A066839, A069288, A161906, A217581, A333749.

%Y - Superior: A033677, A063538, A063539, A070038, A072500, A116882, A161908, A341591, A341592, A341593, A341675, A341676.

%Y - Strictly Inferior: A060775, A070039, A333805, A333806, A341596, A341674.

%Y - Strictly Superior: A048098, A238535, A341594, A341595, A341643, A341644.

%Y Cf. A001222, A001248, A006530, A020639, A112798.

%Y Subsequence of A007916.

%K nonn

%O 1,1

%A _Gus Wiseman_, Feb 22 2021

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 23 11:35 EDT 2024. Contains 371912 sequences. (Running on oeis4.)