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

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