login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A022133 Fibonacci sequence beginning 4 15. 1
4, 15, 19, 34, 53, 87, 140, 227, 367, 594, 961, 1555, 2516, 4071, 6587, 10658, 17245, 27903, 45148, 73051, 118199, 191250, 309449, 500699, 810148, 1310847, 2120995, 3431842, 5552837, 8984679, 14537516 (list; graph; refs; listen; history; internal format)
OFFSET

0,1

LINKS

Tanya Khovanova, Recursive Sequences

FORMULA

Contribution from Alois P. Heinz (heinz(AT)hs-heilbronn.de), Jul 31 2008: (Start)

G.f.: (4+11*x)/(1-x-x^2).

a(n) = term (1,1) in the 1x2 matrix [4,11] . [1,1; 1,0]^n. (End)

MAPLE

(Maple) a := n -> (Matrix([[4, 11]]).Matrix([[1, 1], [1, 0]])^n)[1, 1]; seq (a(n), n=0..30); [From Alois P. Heinz (heinz(AT)hs-heilbronn.de), Jul 31 2008]

MATHEMATICA

a={}; b=4; c=15; AppendTo[a, b]; AppendTo[a, c]; Do[b=b+c; AppendTo[a, b]; c=b+c; AppendTo[a, c], {n, 1, 40, 1}]; a (Vladimir Orlovsky, Jul 23 2008)

Alternate: Transpose[NestList[{#[[2]], #[[2]]+#[[1]]}&, {4, 15}, 40]][[1]]

CROSSREFS

Sequence in context: A032826 A190709 A166732 * A100783 A170850 A055465

Adjacent sequences:  A022130 A022131 A022132 * A022134 A022135 A022136

KEYWORD

nonn

AUTHOR

N. J. A. Sloane (njas(AT)research.att.com).

EXTENSIONS

Alternate Mathematica program provided by Harvey P. Dale, Dec. 12, 2010

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 05:09 EST 2012. Contains 205570 sequences.