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!)
A022360 Fibonacci sequence beginning 0, 26. 1
0, 26, 26, 52, 78, 130, 208, 338, 546, 884, 1430, 2314, 3744, 6058, 9802, 15860, 25662, 41522, 67184, 108706, 175890, 284596, 460486, 745082, 1205568, 1950650, 3156218, 5106868, 8263086, 13369954 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Tanya Khovanova, Recursive Sequences
FORMULA
G.f.: 26*x/(1-x-x^2). - Philippe Deléham, Nov 20 2008
a(n) = 26*A000045(n). - G. C. Greubel, Aug 26 2017
MATHEMATICA
a={}; b=0; c=26; AppendTo[a, b]; AppendTo[a, c]; Do[b=b+c; AppendTo[a, b]; c=b+c; AppendTo[a, c], {n, 4!}]; a (* Vladimir Joseph Stephan Orlovsky, Sep 18 2008 *)
Table[26*Fibonacci[n], {n, 0, 50}] (* or *) LinearRecurrence[{1, 1}, {0, 26}, 50] (* G. C. Greubel, Aug 26 2017 *)
PROG
(PARI) for(n=0, 50, print1(26*fibonacci(n), ", ")) \\ G. C. Greubel, Aug 26 2017
CROSSREFS
Sequence in context: A214482 A003900 A040651 * A246031 A165847 A217981
KEYWORD
nonn
AUTHOR
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 05:39 EDT 2024. Contains 371235 sequences. (Running on oeis4.)