login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A204816
Final nonzero digit of n^n in base 6.
1
1, 1, 4, 3, 4, 5, 1, 1, 4, 3, 4, 5, 4, 1, 4, 3, 4, 5, 3, 1, 4, 3, 4, 5, 4, 1, 4, 3, 4, 5, 1, 1, 4, 3, 4, 5, 1, 1, 4, 3, 4, 5, 1, 1, 4, 3, 4, 5, 4, 1, 4, 3, 4, 5, 3, 1, 4, 3, 4, 5, 4, 1, 4, 3, 4, 5, 1, 1, 4, 3, 4, 5, 4, 1, 4, 3, 4, 5, 1, 1, 4, 3, 4, 5, 4
OFFSET
0,3
MATHEMATICA
f[0]=1; f[n_]:=Module[{m=n^n}, While[Mod[m, 6]==0, m=m/6]; Mod[m, 6]]; Table[f[i], {i, 0, 100}]
PROG
(PARI) a(n)=lift(Mod(n/6^valuation(n, 6), 6)^n) \\ Charles R Greathouse IV, Jan 23 2012
CROSSREFS
Sequence in context: A049788 A002558 A204671 * A204818 A099634 A203144
KEYWORD
nonn,easy,base
AUTHOR
STATUS
approved