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!)
A027059 a(n) = A027052(n, 2n-3). 2

%I #16 Mar 08 2023 04:19:08

%S 0,2,6,18,52,146,406,1126,3124,8684,24202,67640,189576,532786,1501254,

%T 4240550,12005780,34063896,96844082,275848044,787104288,2249633916,

%U 6439678858,18460717684,52994100984,152323413890,438363476086

%N a(n) = A027052(n, 2n-3).

%H G. C. Greubel, <a href="/A027059/b027059.txt">Table of n, a(n) for n = 2..750</a>

%F Conjecture D-finite with recurrence (n+1)*a(n) +2*(-4*n-1)*a(n-1) +(19*n-5)*a(n-2) +6*(-n-5)*a(n-3) +3*(-7*n+41)*a(n-4) +2*(4*n-29)*a(n-5) +(n+1)*a(n-6) +6*(n-5)*a(n-7)=0. - _R. J. Mathar_, Jun 15 2020

%F a(n) ~ 3^(n + 5/2) / (2 * sqrt(Pi) * n^(3/2)). - _Vaclav Kotesovec_, Mar 08 2023

%p T:= proc(n, k) option remember;

%p if k<0 or k>2*n then 0

%p elif k=0 or k=2 or k=2*n then 1

%p elif k=1 then 0

%p else add(T(n-1, k-j), j=1..3)

%p fi

%p end:

%p seq( T(n,2*n-3), n=2..30); # _G. C. Greubel_, Nov 06 2019

%t T[n_, k_]:= T[n, k]= If[k<0 || k>2*n, 0, If[k==0 || k==2 || k==2*n, 1, If[k==1, 0, Sum[T[n-1, k-j], {j, 3}]]]]; Table[T[n,2*n-3], {n,2,30}] (* _G. C. Greubel_, Nov 06 2019 *)

%o (Sage)

%o @CachedFunction

%o def T(n, k):

%o if (k<0 or k>2*n): return 0

%o elif (k==0 or k==2 or k==2*n): return 1

%o elif (k==1): return 0

%o else: return sum(T(n-1, k-j) for j in (1..3))

%o [T(n,2*n-3) for n in (2..30)] # _G. C. Greubel_, Nov 06 2019

%K nonn

%O 2,2

%A _Clark Kimberling_

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 21 04:19 EDT 2024. Contains 372720 sequences. (Running on oeis4.)