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!)
A026768 a(n) = Sum_{k=0..floor(n/2)} T(n-k,k), T given by A026758. 10

%I #9 Nov 01 2019 03:54:42

%S 1,1,2,3,6,9,16,29,46,82,145,237,421,737,1228,2171,3788,6388,11253,

%T 19617,33344,58597,102141,174571,306294,533976,916309,1605975,2800260,

%U 4820020,8441365,14721208,25399974,44458045,77542951

%N a(n) = Sum_{k=0..floor(n/2)} T(n-k,k), T given by A026758.

%H G. C. Greubel, <a href="/A026768/b026768.txt">Table of n, a(n) for n = 0..1000</a>

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

%p if n<0 then 0;

%p elif k=0 or k = n then 1;

%p elif type(n,'odd') and k <= (n-1)/2 then

%p procname(n-1,k-1)+procname(n-2,k-1)+procname(n-1,k) ;

%p else

%p procname(n-1,k-1)+procname(n-1,k) ;

%p end if ;

%p end proc;

%p seq( add(T(n-k,k), k=0..floor(n/2)), n=0..30); # _G. C. Greubel_, Oct 31 2019

%t T[n_, k_]:= T[n, k]= If[n<0, 0, If[k==0 || k==n, 1, If[OddQ[n] && k<=(n - 1)/2, T[n-1, k-1] + T[n-2, k-1] + T[n-1, k], T[n-1, k-1] + T[n-1, k] ]]]; Table[Sum[T[n-k,k], {k,0,Floor[n/2]}], {n, 0, 30}] (* _G. C. Greubel_, Oct 31 2019 *)

%o (Sage)

%o @CachedFunction

%o def T(n, k):

%o if (n<0): return 0

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

%o elif (mod(n,2)==1 and k<=(n-1)/2): return T(n-1,k-1) + T(n-2,k-1) + T(n-1,k)

%o else: return T(n-1,k-1) + T(n-1,k)

%o [sum(T(n-k, k) for k in (0..floor(n/2))) for n in (0..30)] # _G. C. Greubel_, Oct 31 2019

%Y Cf. A026758, A026759, A026760, A026761, A026762, A026763, A026764, A026765, A026766, A026767.

%K nonn

%O 0,3

%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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)