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.

A350294 a(n) = floor(n*2^n/(n + 1)).

Original entry on oeis.org

0, 1, 2, 6, 12, 26, 54, 112, 227, 460, 930, 1877, 3780, 7606, 15291, 30720, 61680, 123790, 248346, 498073, 998643, 2001826, 4011942, 8039082, 16106127, 32263876, 64623350, 129424237, 259179060, 518975214, 1039104990, 2080374784, 4164816771, 8337289456, 16689015778
Offset: 0

Views

Author

Stefano Spezia, Dec 23 2021

Keywords

Crossrefs

Programs

  • Maple
    f:= n -> floor(n*2^n/(n+1)):
    map(f, [$0..40]); # Robert Israel, Dec 27 2021
  • Mathematica
    Table[Floor[n 2^n/(n+1)],{n,0,34}]

Formula

A350293(n) <= a(n) (see Lemma 1 in Harborth and Nienborg).
a(n) ~ 2^n.