cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A335073 a(n) = Sum_{k=1..n} 2^(bigomega(k) - omega(k)).

Original entry on oeis.org

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

Views

Author

Daniel Suteu, May 22 2020

Keywords

Comments

Partial sums of A162510.

Crossrefs

Programs

  • 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 *)
  • PARI
    a(n) = sum(k=1, n, 2^(bigomega(k) - omega(k)));

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)).