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.

A162214 a(n) = the largest positive multiple of n with exactly n digits when written in binary.

Original entry on oeis.org

1, 2, 6, 12, 30, 60, 126, 248, 504, 1020, 2046, 4092, 8190, 16380, 32760, 65520, 131070, 262134, 524286, 1048560, 2097144, 4194300, 8388606, 16777200, 33554425, 67108860, 134217702, 268435440, 536870910, 1073741820, 2147483646, 4294967264, 8589934584
Offset: 1

Views

Author

Leroy Quet, Jun 28 2009

Keywords

Crossrefs

Cf. A162213.

Programs

  • Maple
    a:= n-> n*floor((2^n-1)/n): seq(a(n), n=1..40); # Alois P. Heinz, Jul 11 2009
  • Mathematica
    Array[# Floor[(2^# - 1)/#] &, 31] (* Michael De Vlieger, Nov 04 2017 *)

Formula

a(n) = n * floor((2^n-1)/n). - Alois P. Heinz, Jul 11 2009

Extensions

More terms from Alois P. Heinz, Jul 11 2009