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!)
A124807 Number of base-6 circular n-digit numbers with adjacent digits differing by 2 or less. 5

%I #18 Aug 12 2023 01:09:11

%S 1,6,24,84,332,1336,5478,22658,94196,392664,1639274,6849002,28627874,

%T 119688094,500456806,2092720174,8751273556,36596513060,153042707976,

%U 640011807436,2676483843602,11192882945426,46807955443900

%N Number of base-6 circular n-digit numbers with adjacent digits differing by 2 or less.

%C [Empirical] a(base,n) = a(base-1,n) + A005191(n+1) for base >= 2*floor(n/2) + 1.

%H G. C. Greubel, <a href="/A124807/b124807.txt">Table of n, a(n) for n = 0..1000</a>

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

%F From _Colin Barker_, Jun 04 2017: (Start)

%F G.f.: (1 - 6*x^2 - 16*x^3 + 15*x^4 + 8*x^5 - 5*x^6) / ((1 - 4*x - x^2 + x^3)*(1 - 2*x - x^2 + x^3)).

%F a(n) = 6*a(n-1) - 6*a(n-2) - 8*a(n-3) + 5*a(n-4) + 2*a(n-5) - a(n-6) for n > 6.

%F (End)

%F a(n) = -5*[n=0] + 3*A006054(n+2) - 4*A006054(n+1) - A006054(n) + 3*A364705(n) - 8*A364705(n-1) - A364705(n-2). - _G. C. Greubel_, Aug 04 2023

%t LinearRecurrence[{6,-6,-8,5,2,-1}, {1,6,24,84,332,1336,5478}, 35] (* _G. C. Greubel_, Aug 04 2023 *)

%o (S/R) stvar $[N]:(0..M-1) init $[]:=0 asgn $[]->{*} kill +[i in 0..N-1](($[i]`-$[(i+1)mod N]`>2)+($[(i+1)mod N]`-$[i]`>2))

%o (Magma) I:=[1,6,24,84,332,1336,5478]; [n le 7 select I[n] else 6*Self(n-1) -6*Self(n-2) -8*Self(n-3) +5*Self(n-4) +2*Self(n-5) -Self(n-6): n in [1..41]]; // _G. C. Greubel_, Aug 04 2023

%o (SageMath)

%o @CachedFunction

%o def a(n): # a = A124807

%o if (n<7): return (1,6,24,84,332,1336,5478)[n]

%o else: return 6*a(n-1) -6*a(n-2) -8*a(n-3) +5*a(n-4) +2*a(n-5) -a(n-6)

%o [a(n) for n in range(41)] # _G. C. Greubel_, Aug 04 2023

%Y Cf. A005191, A006054, A364705.

%K nonn,easy

%O 0,2

%A _R. H. Hardin_, Dec 28 2006

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 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)