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!)
A169622 a(n) = a(n-1) + Fibonacci(n), a(1)=5. 1
5, 6, 8, 11, 16, 24, 37, 58, 92, 147, 236, 380, 613, 990, 1600, 2587, 4184, 6768, 10949, 17714, 28660, 46371, 75028, 121396, 196421, 317814, 514232, 832043, 1346272, 2178312, 3524581, 5702890, 9227468, 14930355, 24157820, 39088172, 63245989, 102334158 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = 5 + A168193(n)/2.
a(n) = 2*a(n-1) - a(n-3) = 3 + A000045(n+2). - R. J. Mathar Dec 04 2009
G.f.: x*(-5+4*x+4*x^2) / ((1-x)*(x^2+x-1)). - R. J. Mathar Dec 04 2009
a(n) = 3 + (2^(-1-n)*((1-sqrt(5))^n*(-3+sqrt(5)) + (1+sqrt(5))^n*(3+sqrt(5)))) / sqrt(5). - Colin Barker, Apr 20 2017
EXAMPLE
n=2: a(1)+Fibonacci(2) = 5+1 = 6.
n=3: a(2)+Fibonacci(3) = 6+2 = 8.
MATHEMATICA
RecurrenceTable[{a[1]==5, a[n]==a[n-1]+Fibonacci[n]}, a[n], {n, 40}] (* or *) LinearRecurrence[{2, 0, -1}, {5, 6, 8}, 40] (* Harvey P. Dale, Jul 20 2011 *)
PROG
(Magma) [ n eq 1 select 5 else Self(n-1)+Fibonacci(n): n in [1..40] ]; // Klaus Brockhaus, Jan 31 2011
(PARI) Vec((5 - 4*x - 4*x^2) / ((1 - x)*(1 - x - x^2)) + O(x^40)) \\ Colin Barker, Apr 20 2017
CROSSREFS
Sequence in context: A022937 A030742 A048583 * A047321 A033158 A193569
KEYWORD
nonn,easy
AUTHOR
Geoff Ahiakwo, Dec 03 2009
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 10:22 EDT 2024. Contains 371967 sequences. (Running on oeis4.)