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!)
A287836 Number of words over the alphabet {0,1,...,10} such that no two consecutive terms have distance 5. 0
1, 11, 109, 1081, 10721, 106329, 1054553, 10458881, 103729441, 1028771337, 10203182953, 101193470929, 1003620008177, 9953736259545, 98719500126905, 979083577381409, 9710388021269185, 96306012787788969, 955147011506293513, 9472989143467878769, 93951530216004879761 (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) - 18*a(n-3), a(0)=1, a(1)=11, a(2)=109, a(3)=1081.
G.f.: (1 + x - 2*x^2 - 2*x^3)/(1 - 10*x - x^2 + 18*x^3).
MATHEMATICA
LinearRecurrence[{10, 1, -18}, {1, 11, 109, 1081}, 20]
PROG
(Python)
def a(n):
.if n in [0, 1, 2, 3]:
..return [1, 11, 109, 1081][n]
.return 10*a(n-1) + a(n-2) - 18*a(n-3)
CROSSREFS
Sequence in context: A165149 A048346 A054320 * A124290 A094703 A324355
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 April 24 12:31 EDT 2024. Contains 371937 sequences. (Running on oeis4.)