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

 


Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A026733 a(n) = Sum_{k=0..floor(n/2)} T(n,k), T given by A026725. 2

%I #10 Oct 26 2019 15:20:39

%S 1,1,3,5,13,23,57,103,249,455,1083,1993,4693,8679,20275,37633,87377,

%T 162643,375789,701075,1613413,3015563,6916957,12948083,29617161,

%U 55513327,126678893,237705547,541325021,1016736115,2311294377

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

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

%F Conjecture: (-n+2)*a(n) +(n-2)*a(n-1) +2*(4*n-13)*a(n-2) +8*(-n+4)*a(n-3) +5*(-3*n+14)*a(n-4) +(15*n-94)*a(n-5) +2*(-2*n+9)*a(n-6) +4*(n-6)*a(n-7)=0. - _R. J. Mathar_, Oct 26 2019

%p A026733 := proc(n)

%p add(A026725(n,k),k=0..floor(n/2)) ;

%p end proc:

%p seq(A026733(n),n=0..10) ; # _R. J. Mathar_, Oct 26 2019

%t T[n_, k_]:= T[n, k]= 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, 0, Floor[n/2]}], {n, 0, 30}] (* _G. C. Greubel_, Oct 26 2019 *)

%o (PARI) T(n,k) = if(k==n || k==0, 1, if(2*k==n-1, T(n-1, k-1) + T(n-2, k-1) + T(n-1, k), T(n-1, k-1) + T(n-1, k) ));

%o vector(31, n, sum(k=0,floor(n-1/2), T(n-1,k)) ) \\ _G. C. Greubel_, Oct 26 2019

%o (Sage)

%o @CachedFunction

%o def T(n, k):

%o if (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) for k in (0..floor(n/2))) for n in (0..30)] # _G. C. Greubel_, Oct 26 2019

%K nonn

%O 0,3

%A _Clark Kimberling_

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 07:22 EDT 2024. Contains 376004 sequences. (Running on oeis4.)