login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A022143
Fibonacci sequence beginning 5, 19.
0
5, 19, 24, 43, 67, 110, 177, 287, 464, 751, 1215, 1966, 3181, 5147, 8328, 13475, 21803, 35278, 57081, 92359, 149440, 241799, 391239, 633038, 1024277, 1657315, 2681592, 4338907, 7020499, 11359406
OFFSET
0,1
FORMULA
From Alois P. Heinz, Jul 31 2008: (Start)
G.f.: (5+14*x)/(1-x-x^2).
a(n) = term (1,1) in the 1x2 matrix [5,14] . [1,1; 1,0]^n. (End)
MAPLE
a:= n -> (Matrix([[5, 14]]).Matrix([[1, 1], [1, 0]])^n)[1, 1]:
seq(a(n), n=0..35); # Alois P. Heinz, Jul 31 2008
MATHEMATICA
a={}; b=5; c=19; AppendTo[a, b]; AppendTo[a, c]; Do[b=b+c; AppendTo[a, b]; c=b+c; AppendTo[a, c], {n, 4!}]; a (* Vladimir Joseph Stephan Orlovsky, Sep 17 2008 *)
CROSSREFS
Sequence in context: A167766 A106957 A236167 * A004623 A018475 A119238
KEYWORD
nonn
AUTHOR
STATUS
approved