The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A287835 Number of words of length n over the alphabet {0,1,...,10} such that no two consecutive terms have distance 4. 0
1, 11, 107, 1043, 10169, 99149, 966719, 9425675, 91901945, 896059709, 8736735695, 85184670011, 830565128489, 8098152315149, 78958372642847, 769857662314475, 7506244118089817, 73187166301583837, 713587411625345903, 6957599532298617755, 67837787583138657929 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
For n>3, a(n) = 10*a(n-1) - a(n-2) - 14*a(n-3), a(0)=1, a(1)=11, a(2)=107, a(3)=1043.
G.f.: (1 + x - 2 x^2 - 2 x^3)/(1 - 10 x + x^2 + 14 x^3).
MATHEMATICA
LinearRecurrence[{10, -1, -14}, {1, 11, 107, 1043}, 20]
PROG
(Python)
def a(n):
.if n in [0, 1, 2, 3]:
..return [1, 11, 107, 1043][n]
.return 10*a(n-1) - a(n-2) - 14*a(n-3)
CROSSREFS
Sequence in context: A140617 A224717 A163413 * A001721 A193308 A080158
KEYWORD
nonn,easy
AUTHOR
David Nacin, Jun 07 2017
STATUS
approved

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 May 15 12:24 EDT 2024. Contains 372540 sequences. (Running on oeis4.)