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!)
A022348 Fibonacci sequence beginning 0, 14. 1
0, 14, 14, 28, 42, 70, 112, 182, 294, 476, 770, 1246, 2016, 3262, 5278, 8540, 13818, 22358, 36176, 58534, 94710, 153244, 247954, 401198, 649152, 1050350, 1699502, 2749852, 4449354, 7199206, 11648560 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Tanya Khovanova, Recursive Sequences
FORMULA
G.f.: 14*x/(1-x-x^2). - Philippe Deléham, Nov 20 2008
a(n) = 14 * A000045(n). - Vladimir Joseph Stephan Orlovsky, Jun 08 2011
MATHEMATICA
a={}; b=0; c=14; 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 17 2008 *)
Table[14*Fibonacci[n], {n, 0, 50}] (* or *) LinearRecurrence[{1, 1}, {0, 14}, 50] (* G. C. Greubel, Aug 26 2017 *)
PROG
(PARI) for(n=0, 50, print1(14*fibonacci(n), ", ")) \\ G. C. Greubel, Aug 26 2017
CROSSREFS
Sequence in context: A205702 A099203 A040183 * A214463 A006662 A247516
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 April 25 21:09 EDT 2024. Contains 371989 sequences. (Running on oeis4.)