Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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!)
A372740 Coreful untouchable numbers: numbers that are not the sum of aliquot coreful divisors (A336563) of any number. 3
1, 4, 8, 9, 16, 20, 25, 27, 28, 32, 40, 44, 45, 48, 49, 50, 52, 54, 63, 64, 68, 72, 75, 76, 81, 88, 92, 99, 100, 104, 108, 116, 117, 121, 124, 125, 128, 136, 144, 147, 148, 152, 153, 160, 162, 164, 169, 171, 172, 175, 176, 184, 188, 189, 192, 196, 200, 207, 208 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
A coreful divisor d of n is a divisor that is divisible by every prime that divides n (see also A307958).
Numbers k such that A372739(k) = 0.
Numbers that are not in the range of A336563.
Except for 1, all the terms are not squarefree (A013929), because if k is squarefree (A005117), and there is a prime p such that p|k, then A336563(p*k) = k.
Includes all the squares of primes (A001248).
The numbers of terms that do not exceed 10^k, for k = 1, 2, ..., are , 4, 29, 281, 2762, 27690, ... . Apparently, the asymptotic density of this sequence exists and equals 0.27... .
LINKS
MATHEMATICA
f[p_, e_] := (p^(e + 1) - 1)/(p - 1) - 1; s[1] = 0; s[n_] := Times @@ f @@@ FactorInteger[n] - n; seq[max_] := Module[{v = Table[0, {max}], i}, Do[i = s[k]; If[0 < i <= max, v[[i]]++], {k, 1, max^2}]; Position[v, _?(# == 0 &)] // Flatten]; seq[200]
PROG
(PARI) s(n) = {my(f = factor(n)); prod(i = 1, #f~, (f[i, 1]^(f[i, 2] + 1) - 1)/(f[i, 1] - 1) - 1) - n; }
lista(nmax) = {my(v = vector(nmax), i); for(k = 1, nmax^2, i = s(k); if(i > 0 && i <= nmax, v[i]++)); for(k = 1, nmax, if(v[k] == 0, print1(k, ", "))); }
CROSSREFS
A001248 is a subsequence.
Similar sequences: A005114, A063948 (unitary), A324276 (bi-unitary), A324277 (infinitary).
Sequence in context: A079432 A162215 A134344 * A324278 A119315 A346256
KEYWORD
nonn
AUTHOR
Amiram Eldar, May 12 2024
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 August 19 05:55 EDT 2024. Contains 375284 sequences. (Running on oeis4.)