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!)
A027037 Diagonal sum of left-justified array T given by A027023. 2

%I #14 Nov 06 2019 01:02:41

%S 1,1,2,3,3,6,7,11,16,21,33,48,65,101,146,203,311,450,635,963,1396,

%T 1989,2993,4348,6233,9329,13574,19543,29135,42446,61303,91123,132884,

%U 192377,285309,416384,603925,894069,1305618,1896495,2803611,4096182,5957183,8796287

%N Diagonal sum of left-justified array T given by A027023.

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

%F a(n) = Sum_{k=0..n} A027023(n-k, k). - _Sean A. Irvine_, Oct 22 2019

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

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

%p elif k<3 or k=2*n then 1

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

%p fi

%p end:

%p seq( add(T(n-k,k), k=0..n), n=0..30); # _G. C. Greubel_, Nov 05 2019

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

%o (Sage)

%o @CachedFunction

%o def T(n, k):

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

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

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

%o [sum(T(n-k, k) for k in (0..n)) for n in (0..30)] # _G. C. Greubel_, Nov 05 2019

%K nonn

%O 0,3

%A _Clark Kimberling_

%E More terms from _Sean A. Irvine_, Oct 21 2019

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.)