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.

A088151 Value of n-th digit in ternary representation of n^n.

Original entry on oeis.org

1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 2, 1, 2, 2, 0, 0, 1, 1, 1, 0, 2, 1, 1, 0, 0, 1, 0, 1, 1, 1, 2, 0, 2, 0, 2, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 2, 2, 2, 1, 1, 0, 1, 2, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 2, 2, 1, 0, 0, 0, 0, 1, 1, 2, 1, 2, 1, 0, 0, 1, 1, 0, 2, 2, 0, 0, 0, 2, 1, 1, 0, 0, 1, 2, 0, 0, 1, 1
Offset: 0

Views

Author

Reinhard Zumkeller, Sep 20 2003

Keywords

Comments

a(n)=d(n) with n^n = Sum(d(k)*3^k: 0<=d(k)<3, k>=0).

Examples

			n=7, 7^7=3110367 -> '1112211200121', '111221-------': a(7)=1.
		

Crossrefs

Formula

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