login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A022396
Fibonacci sequence beginning 1, 26.
0
1, 26, 27, 53, 80, 133, 213, 346, 559, 905, 1464, 2369, 3833, 6202, 10035, 16237, 26272, 42509, 68781, 111290, 180071, 291361, 471432, 762793, 1234225, 1997018, 3231243, 5228261, 8459504, 13687765, 22147269, 35835034, 57982303, 93817337, 151799640, 245616977, 397416617, 643033594
OFFSET
0,2
FORMULA
G.f.: (1+25*x)/(1-x-x^2). - Philippe Deléham, Nov 20 2008
MATHEMATICA
Table[Fibonacci[n+2] + 24*Fibonacci[n], {n, 0, 50}] (* G. C. Greubel, Mar 01 2018 *)
LinearRecurrence[{1, 1}, {1, 26}, 40] (* Harvey P. Dale, Jun 21 2018 *)
PROG
(PARI) for(n=0, 40, print1(fibonacci(n+2) + 24*fibonacci(n), ", ")) \\ G. C. Greubel, Mar 01 2018
(Magma) [Fibonacci(n+2) + 24*Fibonacci(n): n in [0..40]]; // G. C. Greubel, Mar 01 2018
CROSSREFS
Sequence in context: A043603 A296868 A277602 * A042362 A042364 A042366
KEYWORD
nonn
EXTENSIONS
Terms a(30) onward added by G. C. Greubel, Mar 01 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 22 04:43 EDT 2024. Contains 376096 sequences. (Running on oeis4.)