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!)
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 (list; graph; refs; listen; history; text; internal format)
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
Sequence in context: A352328 A028229 A104452 * A344514 A062877 A068526
KEYWORD
nonn
AUTHOR
Daniel Suteu, May 22 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 April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)