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

%I #8 Oct 13 2020 19:35:45

%S 1,9,54,326,1957,11745,70470,422822,2536933,15221601,91329606,

%T 547977638,3287865829,19727194977,118363169862,710179019174,

%U 4261074115045,25566444690273,153398668141638,920392008849830,5522352053098981

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

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

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

%t Table[FromDigits[PadRight[{},n,{1,3,0,2}],6],{n,30}] (* _Harvey P. Dale_, Oct 13 2020 *)

%K nonn,base

%O 1,2

%A _Clark Kimberling_