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!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Tanya Khovanova, Recursive Sequences
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
AUTHOR
EXTENSIONS
More terms from Bruno Berselli, May 22 2015
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 March 28 17:25 EDT 2024. Contains 371254 sequences. (Running on oeis4.)