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”).
%I #12 May 13 2013 01:50:02
%S 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,
%T 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,
%U 4,3,4,5,4,1,4,3,4,5,1,1,4,3,4,5,4
%N Final nonzero digit of n^n in base 6.
%t 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}]
%o (PARI) a(n)=lift(Mod(n/6^valuation(n,6),6)^n) \\ _Charles R Greathouse IV_, Jan 23 2012
%K nonn,easy,base
%O 0,3
%A _José María Grau Ribas_, Jan 19 2012