login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A136690 Final nonzero digit of n! in base 3. 16

%I #30 Dec 03 2022 23:46:29

%S 1,1,2,2,2,1,2,2,1,1,1,2,2,2,1,2,2,1,2,2,1,1,1,2,1,1,2,2,2,1,1,1,2,1,

%T 1,2,2,2,1,1,1,2,1,1,2,1,1,2,2,2,1,2,2,1,2,2,1,1,1,2,1,1,2,2,2,1,1,1,

%U 2,1,1,2,1,1,2,2,2,1,2,2,1,1,1,2,2,2,1,2,2,1,1,1,2,2,2,1,2,2,1,2,2,1,1,1,2

%N Final nonzero digit of n! in base 3.

%H Kevin Ryde, <a href="/A136690/b136690.txt">Table of n, a(n) for n = 0..10000</a>

%H <a href="/index/Fi#FIXEDPOINTS">Index entries for sequences that are fixed points of mappings</a>

%F From _David Radcliffe_, Sep 03 2021: (Start)

%F a(n) = (n! / A060828(n)) mod 3;

%F a(n) = 1 + (A189672(n) mod 2);

%F a(6*n) = a(6*n+1) = a(2*n);

%F a(6*n+2) = 3 - a(2*n);

%F a(6*n+3) = a(6*n+4) = 3 - a(2*n+1);

%F a(6*n+5) = a(2*n+1).

%F (End)

%F a(n) = A008904(A127110(n)). - _Michel Marcus_, Sep 04 2021

%F From _Kevin Ryde_, Dec 03 2022: (Start)

%F a(n) = 1 if n written in base 9 has an even number of digits {2,3,4,6,7}; and otherwise a(n) = 2.

%F Fixed point of the morphism 1 -> 1,1,2,2,2,1,2,2,1; 2 -> 2,2,1,1,1,2,1,1,2; starting from 1.

%F (End)

%e 6! = 720 decimal = 222200 ternary, so a(6) = 2.

%t f[n_] := Mod[6 Times @@ (Rest[ FoldList[{1 + #1[[1]], #2! 2^(#1[[1]] #2)} &, {0, 0}, Reverse[ IntegerDigits[n, 3]]]]), 10][[2]]; # /. {0 -> 1} & /@ Mod[Table[f@n, {n, 0, 104}], 3] (* _Robert G. Wilson v_, Apr 17 2010 *)

%t fnzd[n_]:=Module[{sidn3=Split[IntegerDigits[n!,3]]},If[MemberQ[ Last[ sidn3],0], sidn3[[-2,1]], sidn3[[-1,1]]]]; Array[fnzd,110,0] (* _Harvey P. Dale_, May 03 2018 *)

%o (PARI) a(n) = vecsum([bittest(220,b) |b<-digits(n,9)])%2 + 1; \\ _Kevin Ryde_, Dec 03 2022

%Y Cf. A000142, A127110.

%Y Other bases: A136691, A136692, A136693, A136694, A136695, A136696, A008904, A136697, A136698, A136699, A136700, A136701, A136702.

%K base,easy,nonn

%O 0,3

%A _Carl R. White_, Jan 16 2008

%E More terms from _Robert G. Wilson v_, Apr 17 2010

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 01:06 EDT 2024. Contains 371964 sequences. (Running on oeis4.)