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”).

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

%I #8 Sep 26 2018 18:06:30

%S 1,8,48,291,1747,10484,62904,377427,2264563,13587380,81524280,

%T 489145683,2934874099,17609244596,105655467576,633932805459,

%U 3803596832755,22821580996532,136929485979192,821576915875155,4929461495250931

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

%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+2*x+3*x^3) ) / ( (x-1)*(6*x-1)*(1+x)*(x^2+1) ). - _R. J. Mathar_, Oct 11 2015

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

%K nonn,base,easy

%O 1,2

%A _Clark Kimberling_