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!)
A287827 Number of sequences over the alphabet {0,1,...,9} such that no two consecutive terms have distance 3. 0

%I #8 Jun 07 2017 13:08:49

%S 1,10,86,742,6404,55274,477082,4117804,35541714,306768722,2647791524,

%T 22853698754,197255539962,1702558017644,14695170558994,

%U 126837403201602,1094762853302164,9449150445514434,81557794797885642,703944119701429084,6075903902137709074

%N Number of sequences over the alphabet {0,1,...,9} such that no two consecutive terms have distance 3.

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

%F For n>4, a(n) = 9*a(n-1) - a(n-2) - 20*a(n-3) + 10*a(n-4), a(0)=1, a(1)=10, a(2)=86, a(3)=742, a(4)=6404.

%F G.f.: (-1 - x + 3*x^2 + 2*x^3 - 2*x^4)/(-1 + 9*x - x^2 - 20*x^3 + 10*x^4).

%t LinearRecurrence[{9, -1, -20, 10}, {1, 10, 86, 742, 6404}, 30]

%o (Python)

%o def a(n):

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

%o ..return [1, 10, 86, 742, 6404][n]

%o .return 9*a(n-1)-a(n-2)-20*a(n-3)+10*a(n-4)

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

%K nonn,easy

%O 0,2

%A _David Nacin_, Jun 02 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 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)