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!)
A101169 Lengths of successive words (starting with a) under the substitution: {a -> aab, b -> aac, c -> ab}. 1
1, 3, 9, 26, 76, 221, 644, 1875, 5461, 15903, 46314, 134876, 392791, 1143896, 3331289, 9701475, 28252921, 82278978, 239615244, 697814501, 2032195756, 5918219771, 17235212309, 50192888175, 146173193506, 425689839228 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = 2*a(n-1) + 3*a(n-2) - a(n-3).
G.f.: -(x+1) / (-x^3+3*x^2+2*x-1).
EXAMPLE
a => aab => aabaabaac => aabaabaacaabaabaacaabaabab, thus a(0) = 1, a(1) = 3, a(2) = 9, a(3) = 26.
MAPLE
a:= n-> (<<0|1|0>, <0|0|1>, <-1|3|2>>^n. <<0, 1, 3>>)[2, 1]:
seq(a(n), n=0..30); # Alois P. Heinz, May 06 2011
MATHEMATICA
LinearRecurrence[{2, 3, -1}, {1, 3, 9}, 40] (* Harvey P. Dale, Feb 19 2012 *)
CROSSREFS
Sequence in context: A123941 A005774 A273343 * A119826 A027915 A295115
KEYWORD
easy,nonn
AUTHOR
Jeroen F.J. Laros, Jan 22 2005
EXTENSIONS
Terms >=1875 by Alois P. Heinz, May 06 2011
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 19 04:04 EDT 2024. Contains 371782 sequences. (Running on oeis4.)