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!)
A123189 a(0) = 0, a(1) = 1, a(2)=1; a(n) = 3a(n-1) + 3a(n-2) - 4a(n-3) for n >= 3. 1
0, 1, 1, 6, 17, 65, 222, 793, 2785, 9846, 34721, 122561, 432462, 1526185, 5385697, 19005798, 67069745, 236683841, 835237566, 2947485241, 10401433057, 36705804630, 129531772097, 457106997953, 1613093091630, 5692473180361 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
a(n) is the sum of the upper-left and the upper-middle element of {{3,3,-4},{1,0,0},{0,1,0}}^(n-2). - Jianing Song, Aug 11 2023
LINKS
FORMULA
G.f.: (x-2*x^2)/(1-3*x-3*x^2+4*x^3). - Jianing Song, Aug 11 2023
MAPLE
a[1]:=1: a[2]:=1: a[3]:=6: for n from 4 to 25 do a[n]:=3*a[n-1]+3*a[n-2]-4*a[n-3] od: seq(a[n], n=1..25);
MATHEMATICA
M = {{1, -2, 1}, {-2, 2, 0}, {1, 1, 0}} v[1] = {1, 0, 0} v[n_] := v[n] = M.v[n - 1]; a1 = Table[v[n][[1]], {n, 1, 50}]
PROG
(PARI) a(n) = my(Mn=[3, 3, -4; 1, 0, 0; 0, 1, 0]^(n-2)); Mn[1, 1]+Mn[1, 2] \\ Jianing Song, Aug 11 2023
CROSSREFS
Sequence in context: A195741 A006758 A363165 * A219847 A047156 A128243
KEYWORD
nonn
AUTHOR
Roger L. Bagula, Oct 03 2006
EXTENSIONS
Edited by N. J. A. Sloane, Oct 08 2006
Added initial a(0) = 0 at the suggestion of Jianing Song. - N. J. A. Sloane, Aug 12 2023
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 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)