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!)
A287808 Number of septenary sequences of length n such that no two consecutive terms have distance 1. 0

%I #8 Jun 05 2017 16:04:52

%S 1,7,37,197,1049,5587,29757,158491,844153,4496123,23947233,127547675,

%T 679344041,3618320227,19271886609,102645866251,546712113769,

%U 2911896468083,15509334488577,82605772190267,439974623297369,2343391557436483,12481365289466289

%N Number of septenary sequences of length n such that no two consecutive terms have distance 1.

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

%F For n>4, a(n) = 7*a(n-1) - 8*a(n-2) - 6*a(n-3) + 6*a(n-4), a(1)=7, a(2)=37, a(3)=197, a(4)=1049.

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

%e For n=2 the a(2)=37=49-12 sequences contain every combination except these twelve: 01,10,12,21,23,32,34,43,45,54,56,65.

%t LinearRecurrence[{7, -8, -6, 6}, {1, 7, 37, 197, 1049}, 40]

%o (Python)

%o def a(n):

%o .if n in [0,1,2,3,4]:

%o ..return [1, 7, 37, 197, 1049][n]

%o .return 7*a(n-1)-8*a(n-2)-6*a(n-3)+6*a(n-4)

%Y Cf. A040000, A003945, A083318, A078057, A003946, A126358, A003946, A055099, A003947, A015448, A126473. A287804-A287819.

%K nonn,easy

%O 0,2

%A _David Nacin_, Jun 01 2017

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 06:49 EDT 2024. Contains 371964 sequences. (Running on oeis4.)