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.

Showing 1-2 of 2 results.

A228448 a(n) = floor(n!/3^n).

Original entry on oeis.org

1, 0, 0, 0, 0, 0, 0, 2, 6, 18, 61, 225, 901, 3905, 18226, 91134, 486048, 2754274, 16525645, 104662422, 697749481, 4884246371, 35817806721, 274603184861, 2196825478892, 18306878990770, 158659617920008, 1427936561280078, 13327407905280733, 128831609751047086
Offset: 0

Views

Author

Alex Ratushnyak, Oct 27 2013

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Floor[n!/3^n],{n,0,30}] (* Harvey P. Dale, May 24 2018 *)
  • Python
    import math
    for n in range(99): print(math.factorial(n)//(3**n), end=', ')

A228449 a(n) = floor(n! / 4^n).

Original entry on oeis.org

1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 9, 28, 92, 324, 1217, 4871, 20703, 93166, 442542, 2212711, 11616735, 63892044, 367379253, 2204275523, 13776722023, 89548693155, 604453678799, 4231175751597, 30676024199079, 230070181493096, 1783043906571497, 14264351252571976
Offset: 0

Views

Author

Alex Ratushnyak, Oct 27 2013

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Floor[n!/4^n],{n,0,40}] (* Harvey P. Dale, Jun 07 2014 *)
  • Python
    import math
    for n in range(99): print(math.factorial(n)//(4**n), end=', ')
Showing 1-2 of 2 results.