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!)
A063977 Numbers which are sums of unitary divisors, the usigma values: their inverse usigma set is not empty; usigma() = A034448(). 1
1, 3, 4, 5, 6, 8, 9, 10, 12, 14, 17, 18, 20, 24, 26, 28, 30, 32, 33, 36, 38, 40, 42, 44, 48, 50, 54, 56, 60, 62, 65, 68, 70, 72, 74, 78, 80, 82, 84, 90, 96, 98, 100, 102, 104, 108, 110, 112, 114, 120, 122, 126, 128, 129, 130, 132, 136, 138, 140, 144, 150, 152, 158 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MATHEMATICA
usigma[n_] := Times @@ (1 + Power @@@ FactorInteger[n]); usigma[1] = 1; seq[max_] := TakeWhile[Union[Array[usigma, max]], # <= max &]; seq[160] (* Amiram Eldar, Jul 22 2024 *)
PROG
(PARI) usigma(n) = {my(f = factor(n)); prod(i = 1, #f~, 1 + f[i, 1]^f[i, 2]); }
lista(nmax) = Set(select(x -> x <= nmax, vector(nmax, i, usigma(i)))); \\ Amiram Eldar, Jul 22 2024
CROSSREFS
Cf. A034448, A064000 (complement).
Sequence in context: A253897 A100966 A358973 * A371663 A290136 A359168
KEYWORD
nonn
AUTHOR
Labos Elemer, Sep 05 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 August 23 03:25 EDT 2024. Contains 375375 sequences. (Running on oeis4.)