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!)
A327564 If n = Product (p_j^k_j) then a(n) = Product ((p_j + 1)^(k_j - 1)). 10
1, 1, 1, 3, 1, 1, 1, 9, 4, 1, 1, 3, 1, 1, 1, 27, 1, 4, 1, 3, 1, 1, 1, 9, 6, 1, 16, 3, 1, 1, 1, 81, 1, 1, 1, 12, 1, 1, 1, 9, 1, 1, 1, 3, 4, 1, 1, 27, 8, 6, 1, 3, 1, 16, 1, 9, 1, 1, 1, 3, 1, 1, 4, 243, 1, 1, 1, 3, 1, 1, 1, 36, 1, 1, 6, 3, 1, 1, 1, 27, 64, 1, 1, 3, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
a(1) = 1; a(n) = -Sum_{d|n, d<n} (-1)^A001221(n/d) * A003557(n/d) * a(d).
a(n) = A003959(n) / A048250(n) = A003968(n) / A007947(n).
a(n) = A348038(n) * A348039(n) = A340368(n) / A173557(n). - Antti Karttunen, Oct 29 2021
Dirichlet g.f.: 1/(zeta(s-1) * Product_{p prime} (1 - 1/p^(s-1) - 1/p^s)). - Amiram Eldar, Dec 07 2023
EXAMPLE
a(12) = a(2^2 * 3) = (2 + 1)^(2 - 1) * (3 + 1)^(1 - 1) = 3.
MATHEMATICA
a[n_] := Times @@ ((#[[1]] + 1)^(#[[2]] - 1) & /@ FactorInteger[n]); Table[a[n], {n, 1, 85}]
PROG
(PARI) a(n) = my(f=factor(n)); for (k=1, #f~, f[k, 1]++; f[k, 2]--); factorback(f); \\ Michel Marcus, Mar 03 2020
CROSSREFS
Sequence in context: A365427 A366787 A348038 * A243748 A340149 A340075
KEYWORD
nonn,mult
AUTHOR
Ilya Gutkovskiy, Mar 03 2020
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 April 23 09:48 EDT 2024. Contains 371905 sequences. (Running on oeis4.)