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!)
A361706 Inverse Moebius transform applied twice to primes. 2
2, 7, 9, 19, 15, 37, 21, 50, 39, 65, 35, 116, 45, 91, 87, 134, 63, 174, 71, 200, 125, 155, 87, 322, 125, 197, 172, 282, 113, 383, 131, 349, 217, 271, 213, 555, 161, 311, 267, 546, 183, 555, 195, 482, 402, 379, 215, 857, 267, 546, 369, 602, 245, 768, 349, 774, 421, 503, 281, 1204, 287, 561, 582, 875, 425 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Dirichlet convolution of primes with the number of divisors function.
LINKS
N. J. A. Sloane, Transforms
FORMULA
G.f.: Sum_{i>=1} Sum_{j>=1} prime(i) * x^(i*j) / (1 - x^(i*j)).
a(n) = Sum_{d|n} A000005(n/d) * prime(d).
MAPLE
a:= (proc(p) proc(n) uses numtheory;
add(p(d), d=divisors(n))
end end@@2)(ithprime):
seq(a(n), n=1..100); # Alois P. Heinz, Mar 23 2023
MATHEMATICA
Table[Sum[DivisorSigma[0, n/d] Prime[d], {d, Divisors[n]}], {n, 1, 65}]
PROG
(PARI) a(n) = sumdiv(n, d, numdiv(n/d)*prime(d)); \\ Michel Marcus, Mar 23 2023
CROSSREFS
Sequence in context: A055673 A177737 A336770 * A293645 A293646 A020895
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 21 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 July 15 15:36 EDT 2024. Contains 374333 sequences. (Running on oeis4.)