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.

A094987 a(n) = floor(11^n/5^n).

Original entry on oeis.org

1, 2, 4, 10, 23, 51, 113, 249, 548, 1207, 2655, 5843, 12855, 28281, 62218, 136880, 301136, 662499, 1457498, 3206497, 7054294, 15519448, 34142787, 75114133, 165251092, 363552403, 799815288, 1759593634, 3871105995, 8516433190
Offset: 0

Views

Author

Robert G. Wilson v, May 26 2004

Keywords

Crossrefs

Programs

  • Magma
    [Floor(11^n / 5^n): n in [0..40]]; // Vincenzo Librandi, Sep 08 2011
    
  • Mathematica
    Table[ Floor[(11/5)^n], {n, 0, 30}]
  • Maxima
    A094987(n):=floor(11^n/5^n)$ makelist(A094987(n),n,0,60); /* Martin Ettl, Oct 25 2012 */
    
  • PARI
    a(n) = 11^n\5^n; \\ Altug Alkan, Sep 08 2018