The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A022122 Fibonacci sequence beginning 3, 10. 3
3, 10, 13, 23, 36, 59, 95, 154, 249, 403, 652, 1055, 1707, 2762, 4469, 7231, 11700, 18931, 30631, 49562, 80193, 129755, 209948, 339703, 549651, 889354, 1439005, 2328359, 3767364, 6095723, 9863087, 15958810, 25821897, 41780707, 67602604, 109383311, 176985915 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
Tanya Khovanova, Recursive Sequences
FORMULA
G.f.: (3+7x)/(1-x-x^2). - Philippe Deléham, Nov 19 2008
From Wajdi Maaloul, Jun 09 2022: (Start)
a(n) = 3*Lucas(n+1) + Fibonacci(n).
a(n) = 3*Fibonacci(n+1) + 7*Fibonacci(n).
a(n) = a(n-1) + a(n-2). (End)
MATHEMATICA
a={}; b=3; c=10; 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 *)
CROSSREFS
Sequence in context: A229205 A229483 A235089 * A042479 A042897 A041169
KEYWORD
nonn,easy
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 May 31 21:26 EDT 2024. Contains 373003 sequences. (Running on oeis4.)