login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


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

%I #17 Sep 08 2022 08:45:24

%S 1,3,9,24,61,151,369,896,2169,5243,12665,30584,73845,178287,430433,

%T 1039168,2508785,6056755,14622313,35301400,85225133,205751687,

%U 496728529,1199208768,2895146089,6989500971,16874148057,40737797112,98349742309

%N a(n) = 2*a(n-1) + a(n-2) + n.

%C A modified Pellian sequence.

%H Harvey P. Dale, <a href="/A117585/b117585.txt">Table of n, a(n) for n = 0..1000</a>

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

%F a(n)/a(n-1) tends to 1 + sqrt(2) = 2.414213562...(a(14)/a(13) = 430433/178287 = 2.4142702...).

%F a(n) = (1/2)*(Pell(n+2) + 2*Pell(n+1) - n - 2), with Pell(n) = A000129(n). - _Ralf Stephan_, May 15 2007

%F From _R. J. Mathar_, Aug 05 2009: (Start)

%F a(n) = 4*a(n-1) - 4*a(n-2) + a(n-4).

%F G.f.: (1-x+x^2)/((1-2*x-x^2)*(1-x)^2). (End)

%e a(4) = 61 = 2*(a(3)) + a(2) + 4 = 2*24 + 9 + 4.

%e a(4) = 61 = sum of terms in row 5 of A117584: 1 + 5 + 9 + 17 + 29.

%t RecurrenceTable[{a[0]==1,a[1]==3, a[n]==2a[n-1]+a[n-2]+n}, a, {n,30}] (* or *) LinearRecurrence[{4,-4,0,1}, {1,3,9,24}, 30] (* _Harvey P. Dale_, Mar 11 2015 *)

%o (Magma)

%o P:= func< n | Round( ((1+Sqrt(2))^n - (1-Sqrt(2))^n)/(2*Sqrt(2)) ) >;

%o [(1/2)*(P(n+2) + 2*P(n+1) - (n+2)): n in [0..30]]; // _G. C. Greubel_, Jul 05 2021

%o (Sage)

%o def a(n): return (1/2)*(lucas_number1(n+2,2,-1) + 2*lucas_number1(n+1,2,-1) -n-2)

%o [a(n) for n in (0..30)] # _G. C. Greubel_, Jul 05 2021

%Y Row sums of triangle A117584.

%K nonn

%O 0,2

%A _Gary W. Adamson_, Mar 29 2006

%E Terms from a(20) on corrected by _R. J. Mathar_, Aug 05 2009

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 19 20:04 EDT 2024. Contains 376014 sequences. (Running on oeis4.)