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.

A094977 a(n) = floor(10^n/3^n).

Original entry on oeis.org

1, 3, 11, 37, 123, 411, 1371, 4572, 15241, 50805, 169350, 564502, 1881676, 6272254, 20907515, 69691719, 232305731, 774352437, 2581174791, 8603915972, 28679719907, 95599066359, 318663554532, 1062211848441, 3540706161472
Offset: 0

Views

Author

Robert G. Wilson v, May 26 2004

Keywords

Crossrefs

Programs

  • Magma
    [Floor(10^n / 3^n): n in [0..30]]; // Vincenzo Librandi, Sep 08 2011
  • Mathematica
    Table[ Floor[(10/3)^n], {n, 0, 30}]