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-1 of 1 results.

A233397 a(n) = floor(n^n / 3^n).

Original entry on oeis.org

1, 0, 0, 1, 3, 12, 64, 376, 2557, 19683, 169350, 1610592, 16777216, 189970982, 2323244584, 30517578125, 428528437130, 6405755132013, 101559956668416, 1702215647540101, 30072865982171749, 558545864083284007, 10880062101736647492, 221794805104450672070
Offset: 0

Views

Author

Alex Ratushnyak, Dec 08 2013

Keywords

Crossrefs

Programs

  • Python
    for n in range(33):  print(n**n // 3**n, end=', ')
Showing 1-1 of 1 results.