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.

A233203 a(n) = floor(n^n / 2^n).

Original entry on oeis.org

1, 0, 1, 3, 16, 97, 729, 6433, 65536, 756680, 9765625, 139312339, 2176782336, 36972058910, 678223072849, 13363461010158, 281474976710656, 6311342330065435, 150094635296999121, 3773536025353076151, 100000000000000000000, 2785962590401641140642, 81402749386839761113321
Offset: 0

Views

Author

Alex Ratushnyak, Dec 05 2013

Keywords

Examples

			a(5) = floor(5^5 / 2^5) = floor(3125 / 32) = 97.
		

Crossrefs

Cf. A000079, A000312, A178537 (n^n mod 2^n for odd n), A206344.
Bisection gives: A062206 (even part).

Programs

Formula

a(n) = floor((n/2)^n).