The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A347127 a(n) = A327251(n) / A003557(n). 4
1, 5, 7, 8, 11, 35, 15, 11, 11, 55, 23, 56, 27, 75, 77, 14, 35, 55, 39, 88, 105, 115, 47, 77, 17, 135, 15, 120, 59, 385, 63, 17, 161, 175, 165, 88, 75, 195, 189, 121, 83, 525, 87, 184, 121, 235, 95, 98, 23, 85, 245, 216, 107, 75, 253, 165, 273, 295, 119, 616, 123, 315, 165, 20, 297, 805, 135, 280, 329, 825, 143, 121 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
Multiplicative with a(p^e) = ((p+1)*e + p) for prime p.
a(n) = A327251(n) / A003557(n).
MATHEMATICA
f[p_, e_] := (p + 1)*e + p; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Aug 24 2021 *)
PROG
(PARI) A347127(n) = { my(f=factor(n)); prod(i=1, #f~, ((f[i, 1]+1)*f[i, 2] + f[i, 1])); };
(PARI)
A001615(n) = if(1==n, n, my(f=factor(n)); prod(i=1, #f~, f[i, 1]^f[i, 2] + f[i, 1]^(f[i, 2]-1))); \\ After code in A001615
A003557(n) = (n/factorback(factorint(n)[, 1]));
A327251(n) = sumdiv(n, d, A001615(n/d)*d);
A347127(n) = (A327251(n) / A003557(n));
CROSSREFS
Cf. also A048250, A347128, A347129.
Sequence in context: A045251 A099497 A327960 * A061813 A173664 A171420
KEYWORD
nonn,mult,look
AUTHOR
Antti Karttunen, Aug 23 2021
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 June 2 08:32 EDT 2024. Contains 373033 sequences. (Running on oeis4.)