The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A357696 Cubefree primitive abundant numbers: cubefree abundant numbers having no abundant proper divisor. 2
12, 18, 20, 30, 42, 66, 70, 78, 102, 114, 138, 174, 186, 196, 222, 246, 258, 282, 308, 318, 354, 364, 366, 402, 426, 438, 474, 476, 498, 532, 534, 550, 572, 582, 606, 618, 642, 644, 650, 654, 678, 748, 762, 786, 812, 822, 834, 836, 868, 894, 906, 942, 978, 1002 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
cubeFreeQ[n_] := Max[FactorInteger[n][[;; , 2]]] < 3; primQ[n_] := DivisorSigma[-1, n] > 2 && AllTrue[n/FactorInteger[n][[;; , 1]], DivisorSigma[-1, #] <= 2 &]; Select[Range[1500], cubeFreeQ[#] && primQ[#] &]
PROG
(PARI) is(n) = {my(f = factor(n)); for(i = 1, #f~, if(f[i, 2] > 2, return(0))); if(sigma(f, -1) <= 2, return(0)); for(i = 1, #f~, if(sigma(n/f[i, 1], -1) > 2, return(0))); 1};
CROSSREFS
Intersection of A004709 and A091191.
Subsequence of A357695.
A249242 is a subsequence.
Cf. A308618.
Sequence in context: A192819 A181487 A091191 * A259980 A257719 A071927
KEYWORD
nonn
AUTHOR
Amiram Eldar, Oct 10 2022
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 May 16 02:54 EDT 2024. Contains 372549 sequences. (Running on oeis4.)