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!)
A366990 The sum of divisors of n that are terms of A056166. 3
1, 1, 1, 5, 1, 1, 1, 13, 10, 1, 1, 5, 1, 1, 1, 13, 1, 10, 1, 5, 1, 1, 1, 13, 26, 1, 37, 5, 1, 1, 1, 45, 1, 1, 1, 50, 1, 1, 1, 13, 1, 1, 1, 5, 10, 1, 1, 13, 50, 26, 1, 5, 1, 37, 1, 13, 1, 1, 1, 5, 1, 1, 10, 45, 1, 1, 1, 5, 1, 1, 1, 130, 1, 1, 26, 5, 1, 1, 1, 13 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
The number of these divisors is A095691(n) and the largest of them is A366993(n).
LINKS
FORMULA
Multiplicative with a(p^e) = 1 + Sum_{primes q <= e} p^q.
a(n) >= 1, with equality if and only if n is squarefree (A005117).
MATHEMATICA
f[p_, e_] := 1 + Total[p^Select[Range[e], PrimeQ]]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100]
PROG
(PARI) a(n) = {my(f = factor(n)); prod(i = 1, #f~, 1 + sum(j = 1, f[i, 2], if(isprime(j), f[i, 1]^j))); }
CROSSREFS
Sequence in context: A204007 A242404 A145295 * A360722 A091051 A183097
KEYWORD
nonn,easy,mult
AUTHOR
Amiram Eldar, Oct 31 2023
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 16 19:31 EDT 2024. Contains 375177 sequences. (Running on oeis4.)