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!)
A109530 a(n)= 3*a(n-3) +3*a(n-6) +a(n-9). 1
1, 0, 2, 6, 1, 9, 23, 2, 34, 88, 9, 131, 339, 34, 504, 1304, 131, 1939, 5017, 504, 7460, 19302, 1939, 28701, 74261, 7460, 110422, 285706, 28701, 424829, 1099203, 110422, 1634454, 4228988, 424829, 6288271, 16270279, 1634454, 24193004, 62597004 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
The recurrence shows that these are actually three interleaved sequences with
the same recurrence (and the same characteristic polynomial).
LINKS
FORMULA
G.f.: (1+2*x^2+3*x^3+x^4+3*x^5+2*x^6-x^7+x^8)/(1-3*x^3-3*x^6-x^9). [Sep 28 2009]
MATHEMATICA
M1 = {{0, 1, 0}, {0, 0, 1}, {1, 1, 1}}; M2 = {{1, 1, 1}, {1, 0, 0}, {0, 1, 0}}; M3 = {{0, 1, 0}, {1, 1, 1}, {1, 0, 0}}; M[n_] = If[Mod[n, 3] == 1, M3, If[Mod[n, 3] == 2, M2, M1]]; v[0] = {0, 1, 1}; v[n_] := v[n] = M[n].v[n - 1] a = Table[v[n][[3]], {n, 0, 100}]
LinearRecurrence[{0, 0, 3, 0, 0, 3, 0, 0, 1}, {1, 0, 2, 6, 1, 9, 23, 2, 34}, 60] (* Harvey P. Dale, Sep 13 2022 *)
CROSSREFS
Sequence in context: A291836 A100831 A136763 * A264789 A111519 A184941
KEYWORD
nonn,easy
AUTHOR
Roger L. Bagula, Jun 18 2005
EXTENSIONS
Definition replaced by recurrence by the Associate Editors of the OEIS, Sep 28 2009
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 23 02:23 EDT 2024. Contains 371906 sequences. (Running on oeis4.)