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”).

A022363
Fibonacci sequence beginning 0, 29.
2
0, 29, 29, 58, 87, 145, 232, 377, 609, 986, 1595, 2581, 4176, 6757, 10933, 17690, 28623, 46313, 74936, 121249, 196185, 317434, 513619, 831053, 1344672, 2175725, 3520397, 5696122, 9216519, 14912641, 24129160, 39041801, 63170961, 102212762, 165383723
OFFSET
0,2
FORMULA
G.f.: 29*x/(1-x-x^2). - Philippe Deléham, Nov 20 2008
a(n) = Fibonacci(n+7) - Fibonacci(n-7), where Fibonacci(-7..-1) = 13, -8, 5, -3, 2, -1, 1. - Bruno Berselli, May 22 2015
a(n) = a(n-1) + a(n-2) for n>=2, with a(0)=0, a(1)=29. - Wesley Ivan Hurt, May 12 2023
MATHEMATICA
Table[29 Fibonacci(n), {n, 0, 40}] (* Bruno Berselli, May 22 2015 *)
LinearRecurrence[{1, 1}, {0, 29}, 40] (* Harvey P. Dale, Feb 13 2023 *)
PROG
(Magma) [29*Fibonacci(n): n in [0..40]]; // Bruno Berselli, May 22 2015
(PARI) for(n=0, 50, print1(29*fibonacci(n), ", ")) \\ G. C. Greubel, Aug 26 2017
CROSSREFS
Cf. A000045.
Cf. similar sequences listed in A258160.
Sequence in context: A291500 A070851 A040813 * A146226 A146423 A146129
KEYWORD
nonn,easy
EXTENSIONS
More terms from Bruno Berselli, May 22 2015
STATUS
approved