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!)
A157725 a(n) = Fibonacci(n) + 2. 18
2, 3, 3, 4, 5, 7, 10, 15, 23, 36, 57, 91, 146, 235, 379, 612, 989, 1599, 2586, 4183, 6767, 10948, 17713, 28659, 46370, 75027, 121395, 196420, 317813, 514231, 832042, 1346271, 2178311, 3524580, 5702889, 9227467, 14930354, 24157819, 39088171, 63245988, 102334157 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
a(n) = A226649(2*n+1) - A226649(2*n). - Reinhard Zumkeller, Jul 30 2013
LINKS
K.-W. Chen, Greatest Common Divisors in Shifted Fibonacci Sequences, J. Int. Seq. 14 (2011) # 11.4.7
Ivana Jovović and Branko Malešević, Some enumerations of non-trivial composition of the differential operations and the directional derivative, Notes on Number Theory and Discrete Mathematics, Vol. 23, 2017, No. 1, 28-38.
FORMULA
G.f.: -(1+x)*(3*x-2) / ( (x-1)*(x^2+x-1) ). - R. J. Mathar, Aug 08 2012
a(0) = 2, a(1) = 3, a(n) = a(n - 2) + a(n - 1) - 2. - Reinhard Zumkeller, Jul 30 2013
PROG
(Magma) [ Fibonacci(n) + 2: n in [0..40] ]; // Vincenzo Librandi, Apr 24 2011
(PARI) a(n)=fibonacci(n)+2 \\ Charles R Greathouse IV, Jul 02 2013
(Haskell)
a157725 = (+ 2) . a000045
a157725_list = 2 : 3 : map (subtract 2)
(zipWith (+) a157725_list $ tail a157725_list)
-- Reinhard Zumkeller, Jul 30 2013
CROSSREFS
Sequence in context: A065565 A309795 A017842 * A372592 A238394 A372595
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jun 26 2010
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 13 19:55 EDT 2024. Contains 372522 sequences. (Running on oeis4.)