|
| |
|
|
A022141
|
|
Fibonacci sequence beginning 5 17.
|
|
0
|
|
|
|
5, 17, 22, 39, 61, 100, 161, 261, 422, 683, 1105, 1788, 2893, 4681, 7574, 12255, 19829, 32084, 51913, 83997, 135910, 219907, 355817, 575724, 931541, 1507265, 2438806, 3946071, 6384877, 10330948
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
|
OFFSET
|
0,1
|
|
|
LINKS
|
Table of n, a(n) for n=0..29.
Tanya Khovanova, Recursive Sequences
|
|
|
FORMULA
|
G.f.: (5+12x)/(1-x-x^2). [From Philippe DELEHAM, Nov 20 2008]
|
|
|
MATHEMATICA
|
a={}; b=5; c=17; AppendTo[a, b]; AppendTo[a, c]; Do[b=b+c; AppendTo[a, b]; c=b+c; AppendTo[a, c], {n, 4!}]; a [From Vladimir Joseph Stephan Orlovsky, Sep 17 2008]
LinearRecurrence[{1, 1}, {5, 17}, 30] (* Harvey P. Dale, Feb 21 2013 *)
|
|
|
CROSSREFS
|
Sequence in context: A029986 A076275 A031270 * A091209 A054997 A067377
Adjacent sequences: A022138 A022139 A022140 * A022142 A022143 A022144
|
|
|
KEYWORD
|
nonn
|
|
|
AUTHOR
|
N. J. A. Sloane.
|
|
|
STATUS
|
approved
|
| |
|
|