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!)
A026592 a(n) = T(2*n, n-2), where T is given by A026584. 17

%I #13 Dec 13 2021 03:06:03

%S 1,3,14,65,251,1288,4830,25518,95388,510532,1910821,10309234,38656462,

%T 209766714,787912030,4294635438,16155375825,88371236851,332859949946,

%U 1826080683788,6885797551334,37867515477338,142929375411104,787637258527505,2975423924172735,16425495119248041,62096233990615140,343318987947145114

%N a(n) = T(2*n, n-2), where T is given by A026584.

%H G. C. Greubel, <a href="/A026592/b026592.txt">Table of n, a(n) for n = 2..1000</a>

%F a(n) = A026584(2*n, n-2).

%t T[n_, k_]:= T[n, k]= If[k==0 || k==2*n, 1, If[k==1 || k==2*n-1, Floor[n/2], If[EvenQ[n+k], T[n-1, k-2] + T[n-1, k], T[n-1, k-2] + T[n-1, k-1] + T[n-1, k] ]]]; (* T = A026584 *)

%t a[n_]:= a[n]= Block[{$RecursionLimit= Infinity}, T[2*n,n-2]];

%t Table[a[n], {n, 2, 40}] (* _G. C. Greubel_, Dec 13 2021 *)

%o (Sage)

%o @CachedFunction

%o def T(n, k): # T = A026584

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

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

%o else: return T(n-1, k-2) + T(n-1, k) if ((n+k)%2==0) else T(n-1, k-2) + T(n-1, k-1) + T(n-1, k)

%o [T(2*n, n-2) for n in (2..40)] # _G. C. Greubel_, Dec 13 2021

%Y Cf. A026584, A026585, A026587, A026589, A026590, A026591, A026593, A026594, A026595, A026596, A026597, A026598, A026599, A027282, A027283, A027284, A027285, A027286.

%K nonn

%O 2,2

%A _Clark Kimberling_

%E Terms a(19) onward added by _G. C. Greubel_, Dec 13 2021

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 08:20 EDT 2024. Contains 371964 sequences. (Running on oeis4.)