login
Base-6 digits are, in order, the first n terms of the periodic sequence with initial period 1,0,2,3.
0

%I #10 Jun 13 2015 00:49:17

%S 1,6,38,231,1387,8322,49934,299607,1797643,10785858,64715150,

%T 388290903,2329745419,13978472514,83870835086,503225010519,

%U 3019350063115,18116100378690,108696602272142,652179613632855,3913077681797131

%N Base-6 digits are, in order, the first n terms of the periodic sequence with initial period 1,0,2,3.

%H <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (7,-7,7,-6).

%F G.f.: x*(1-x+3*x^2) / ( (x-1)*(6*x-1)*(x^2+1) ). - _R. J. Mathar_, May 04 2015

%t nn=30;With[{c=PadRight[{},nn,{1,0,2,3}]},Table[FromDigits[Take[c,i],6],{i,nn}]] (* _Harvey P. Dale_, Sep 12 2013 *)

%K nonn,base,easy

%O 1,2

%A _Clark Kimberling_