[go: up one dir, main page]

login
Revision History for A169622 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
a(n) = a(n-1) + Fibonacci(n), a(1)=5.
(history; published version)
#28 by Charles R Greathouse IV at Thu Sep 08 08:45:49 EDT 2022
PROG

(MAGMAMagma) [ n eq 1 select 5 else Self(n-1)+Fibonacci(n): n in [1..40] ]; // Klaus Brockhaus, Jan 31 2011

Discussion
Thu Sep 08
08:45
OEIS Server: https://oeis.org/edit/global/2944
#27 by R. J. Mathar at Wed Apr 26 09:32:59 EDT 2017
STATUS

editing

approved

#26 by R. J. Mathar at Wed Apr 26 09:32:49 EDT 2017
FORMULA

From _a(n) = 2*a(n-1) - a(n-3) = 3 + A000045(n+2). - _R. J. Mathar_ Dec 04 2009: (Start)

a(n) = 2*a(n-1) - a(n-3) = 3 + A000045(n+2).

G.f.: x*(-5+4*x+4*x^2) / ((1-x)*(x^2+x-1)). - _R. J. Mathar_ Dec 04 2009

(End)

EXTENSIONS

Terms beyond a(10) by R. J. Mathar, Dec 04 2009

STATUS

approved

editing

#25 by Alois P. Heinz at Thu Apr 20 14:13:56 EDT 2017
STATUS

proposed

approved

#24 by Colin Barker at Thu Apr 20 14:02:48 EDT 2017
STATUS

editing

proposed

#23 by Colin Barker at Thu Apr 20 14:01:51 EDT 2017
DATA

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

#22 by Colin Barker at Thu Apr 20 14:00:30 EDT 2017
NAME

a(n) = a(n-1) + Fibonacci(n), a(1)=5.

LINKS

<a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (2,0,-1).

FORMULA

a(n) = 5 + A168193(n)/2.

From R. J. Mathar Dec 04 2009: (Start)

a(n) = 2*a(n-1) - a(n-3) = 3 + A000045(n+2). G.f.: x*(-5+4*x+4*x^2)/((1-x)*(x^2+x-1)). - R. J. Mathar, Dec 04 2009

G.f.: x*(-5+4*x+4*x^2) / ((1-x)*(x^2+x-1)).

(End)

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

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

STATUS

approved

editing

#21 by Charles R Greathouse IV at Sat Jun 13 00:53:25 EDT 2015
LINKS

<a href="/index/Rec">Index to sequences with entries for linear recurrences with constant coefficients</a>, signature (2,0,-1).

Discussion
Sat Jun 13
00:53
OEIS Server: https://oeis.org/edit/global/2439
#20 by Charles R Greathouse IV at Fri Jun 12 15:27:15 EDT 2015
LINKS

<a href="/index/Rea#recLCCRec">Index to sequences with linear recurrences with constant coefficients</a>, signature (2,0,-1).

Discussion
Fri Jun 12
15:27
OEIS Server: https://oeis.org/edit/global/2436
#19 by Charles R Greathouse IV at Thu Nov 21 12:49:45 EST 2013
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] (* From _Harvey P. Dale, _, Jul 20 2011 *)

Discussion
Thu Nov 21
12:49
OEIS Server: https://oeis.org/edit/global/2062