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.

A094976 a(n) = floor(8^n/3^n).

Original entry on oeis.org

1, 2, 7, 18, 50, 134, 359, 958, 2557, 6818, 18183, 48490, 129307, 344820, 919522, 2452059, 6538825, 17436866, 46498311, 123995496, 330654658, 881745755, 2351322014, 6270192038, 16720512102, 44588032273, 118901419396
Offset: 0

Views

Author

Robert G. Wilson v, May 26 2004

Keywords

Crossrefs

Programs

  • Magma
    [Floor(8^n / 3^n): n in [0..40]]; // Vincenzo Librandi, Sep 08 2011
    
  • Mathematica
    Table[ Floor[(8/3)^n], {n, 0, 30}]
  • PARI
    a(n) = 8^n\3^n; \\ Michel Marcus, Oct 05 2017