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.

A003176 Integer part of 24(2^n-1)/n.

Original entry on oeis.org

24, 36, 56, 90, 148, 252, 435, 765, 1362, 2455, 4466, 8190, 15121, 28085, 52427, 98302, 185041, 349524, 662257, 1258290, 2396744, 4575603, 8753329, 16777215, 32212253, 61946642, 119304646, 230087532
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [Floor(24*(2^n-1)/n): n in [1..45]]; // Vincenzo Librandi, May 08 2011
    
  • Mathematica
    a[n_] := Floor[24*(2^n-1)/n]; Array[a, 30] (* Giovanni Resta, Mar 25 2017 *)
  • Python
    def A003176(n): return ((3<Chai Wah Wu, Aug 24 2023