login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A335073
a(n) = Sum_{k=1..n} 2^(bigomega(k) - omega(k)).
2
1, 2, 3, 5, 6, 7, 8, 12, 14, 15, 16, 18, 19, 20, 21, 29, 30, 32, 33, 35, 36, 37, 38, 42, 44, 45, 49, 51, 52, 53, 54, 70, 71, 72, 73, 77, 78, 79, 80, 84, 85, 86, 87, 89, 91, 92, 93, 101, 103, 105, 106, 108, 109, 113, 114, 118, 119, 120, 121, 123, 124, 125, 127
OFFSET
1,2
COMMENTS
Partial sums of A162510.
LINKS
FORMULA
a(n) = Sum_{k=1..n} A008683(k) * A069205(floor(n/k)).
a(n) = Sum_{k=1..n} A061142(k) * A002321(floor(n/k)).
MAPLE
a:= proc(n) option remember; uses numtheory; `if`(n<1, 0,
2^(bigomega(n)-nops(factorset(n)))+a(n-1))
end:
seq(a(n), n=1..70); # Alois P. Heinz, May 22 2020
MATHEMATICA
Accumulate[Table[2^(PrimeOmega[n]-PrimeNu[n]), {n, 70}]] (* Harvey P. Dale, Aug 14 2020 *)
PROG
(PARI) a(n) = sum(k=1, n, 2^(bigomega(k) - omega(k)));
CROSSREFS
KEYWORD
nonn
AUTHOR
Daniel Suteu, May 22 2020
STATUS
approved