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.

Showing 1-2 of 2 results.

A340301 a(n) = n * floor(log_2(n)).

Original entry on oeis.org

0, 2, 3, 8, 10, 12, 14, 24, 27, 30, 33, 36, 39, 42, 45, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116, 120, 124, 160, 165, 170, 175, 180, 185, 190, 195, 200, 205, 210, 215, 220, 225, 230, 235, 240, 245, 250, 255, 260, 265, 270, 275, 280, 285, 290
Offset: 1

Views

Author

Alois P. Heinz, Jan 03 2021

Keywords

Crossrefs

Programs

  • Maple
    a:= n-> n*ilog2(n):
    seq(a(n), n=1..60);

Formula

a(n) = n * A000523(n).
a(n) = A326299(n) - A336018(n).

A326299 a(n) = floor(n*log_2(n)).

Original entry on oeis.org

0, 2, 4, 8, 11, 15, 19, 24, 28, 33, 38, 43, 48, 53, 58, 64, 69, 75, 80, 86, 92, 98, 104, 110, 116, 122, 128, 134, 140, 147, 153, 160, 166, 172, 179, 186, 192, 199, 206, 212, 219, 226, 233, 240, 247, 254, 261, 268, 275, 282, 289, 296, 303, 310, 317, 325, 332, 339, 347, 354
Offset: 1

Views

Author

Michel Marcus, Oct 17 2019

Keywords

Crossrefs

Cf. A000523 (log_2(n)), A061717, A340301.

Programs

  • Maple
    a:= n-> floor(n*log[2](n)):
    seq(a(n), n=1..80);  # Alois P. Heinz, Oct 17 2019
  • Mathematica
    Table[Floor[n Log2[n]],{n,80}] (* Harvey P. Dale, Nov 29 2022 *)
  • PARI
    a(n) = n*log(n)\log(2);
Showing 1-2 of 2 results.