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!)
A333450 a(n) = Sum_{k=1..n} mu(k) * prime(floor(n/k)). 3
2, 1, 1, 2, 4, 5, 7, 7, 9, 12, 12, 15, 17, 16, 16, 20, 24, 22, 26, 23, 21, 26, 28, 28, 32, 33, 31, 32, 32, 29, 41, 39, 43, 40, 44, 40, 44, 45, 45, 47, 51, 52, 60, 55, 53, 52, 62, 64, 64, 56, 54, 55, 55, 65, 67, 69, 69, 70, 74, 73, 73, 70, 80, 80, 76, 69, 81, 84, 90, 81, 83, 87, 93, 94 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
Sum_{k=1..n} a(floor(n/k)) = prime(n).
MATHEMATICA
Table[Sum[MoebiusMu[k] Prime[Floor[n/k]], {k, 1, n}], {n, 1, 74}]
g[1] = 2; g[n_] := Prime[n] - Prime[n - 1]; a[n_] := Sum[Sum[MoebiusMu[k/d] g[d], {d, Divisors[k]}], {k, 1, n}]; Table[a[n], {n, 1, 74}]
PROG
(PARI) a(n) = sum(k=1, n, moebius(k)*prime(n\k)); \\ Michel Marcus, Mar 22 2020
(Python)
from functools import lru_cache
from sympy import prime
@lru_cache(maxsize=None)
def A333450(n):
c, j = 2*(n+1)-prime(n), 2
k1 = n//j
while k1 > 1:
j2 = n//k1 + 1
c += (j2-j)*A333450(k1)
j, k1 = j2, n//j2
return 2*j-c # Chai Wah Wu, Mar 31 2021
CROSSREFS
Sequence in context: A333272 A352501 A119558 * A210112 A024735 A024957
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 21 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 May 4 08:39 EDT 2024. Contains 372230 sequences. (Running on oeis4.)