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!)
A322177 If n = Product (p_j^k_j) then a(n) = Sum (prime(p_j)^prime(k_j)). 0
0, 9, 25, 27, 121, 34, 289, 243, 125, 130, 961, 52, 1681, 298, 146, 2187, 3481, 134, 4489, 148, 314, 970, 6889, 268, 1331, 1690, 3125, 316, 11881, 155, 16129, 177147, 986, 3490, 410, 152, 24649, 4498, 1706, 364, 32041, 323, 36481, 988, 246, 6898, 44521, 2212, 4913, 1340 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
a(12) = a(2^2 * 3^1) = prime(2)^prime(2) + prime(3)^prime(1) = 3^3 + 5^2 = 52.
MATHEMATICA
a[n_] := Plus @@ (Prime[#[[1]]]^Prime[#[[2]]] & /@ FactorInteger[n]); a[1] = 0; Table[a[n], {n, 50}]
PROG
(PARI) a(n) = my(f=factor(n)); for (k=1, #f~, f[k, 1] = prime(f[k, 1])^prime(f[k, 2]); ); vecsum(f[, 1]); \\ Michel Marcus, Nov 30 2018
CROSSREFS
Sequence in context: A352492 A068583 A074852 * A346068 A352519 A321874
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 30 2018
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 1 15:30 EDT 2024. Contains 373025 sequences. (Running on oeis4.)