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!)
A351434 If n = Product (p_j^k_j) then a(n) = Product ((p_j - 1)^(k_j + 1)). 1
1, 1, 4, 1, 16, 4, 36, 1, 8, 16, 100, 4, 144, 36, 64, 1, 256, 8, 324, 16, 144, 100, 484, 4, 64, 144, 16, 36, 784, 64, 900, 1, 400, 256, 576, 8, 1296, 324, 576, 16, 1600, 144, 1764, 100, 128, 484, 2116, 4, 216, 64, 1024, 144, 2704, 16, 1600, 36, 1296, 784, 3364, 64, 3600, 900, 288, 1, 2304 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(n) = A003958(n) * |A023900(n)|.
Sum_{k=1..n} a(k) ~ c * n^3, where c = (1/3) * Product_{p prime} (1 - (3*p^2 - 4*p + 2)/(p*(p^3 - p + 1))) = 0.1161464566... . - Amiram Eldar, Nov 19 2022
MAPLE
a:= n-> mul((i[1]-1)^(i[2]+1), i=ifactors(n)[2]):
seq(a(n), n=1..65); # Alois P. Heinz, Feb 11 2022
MATHEMATICA
f[p_, e_] := (p - 1)^(e + 1); a[1] = 1; a[n_] := Times @@ (f @@@ FactorInteger[n]); Table[a[n], {n, 1, 65}]
PROG
(PARI) a(n) = my(f=factor(n)); for (k=1, #f~, f[k, 1]--; f[k, 2]++); factorback(f); \\ Michel Marcus, Feb 11 2022
CROSSREFS
Sequence in context: A262616 A309074 A175844 * A167343 A094361 A187926
KEYWORD
nonn,mult
AUTHOR
Ilya Gutkovskiy, Feb 11 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 April 23 13:41 EDT 2024. Contains 371914 sequences. (Running on oeis4.)