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!)
A208976 Row sums of the triangle in A208101. 3

%I #14 Feb 03 2018 09:55:51

%S 1,2,4,8,15,29,54,104,195,377,713,1385,2639,5147,9866,19304,37179,

%T 72929,140997,277133,537471,1058147,2057509,4056233,7904455,15600899,

%U 30458899,60174899,117675359,232676279,455657714,901620584,1767883499,3500409329,6871173869

%N Row sums of the triangle in A208101.

%C a(n) = A050168(n+1) - 1.

%C Number of Dyck (n+1)-paths that are symmetric after deleting all leading hills. - _David Scambler_, Aug 23 2012

%H Reinhard Zumkeller, <a href="/A208976/b208976.txt">Table of n, a(n) for n = 0..1000</a>

%F a(n) = A001405(n) + A001405(n+1) - 1.

%t T[_, 0] = 1; T[n_, 1] := n; T[n_, n_] := T[n - 1, n - 2]; T[n_, k_] /; 1 < k < n := T[n, k] = T[n - 1, k] + T[n - 1, k - 2];

%t a[n_] := Sum[T[n, k], {k, 0, n}];

%t Table[a[n], {n, 0, 40}] (* _Jean-François Alcover_, Feb 03 2018, from A208101 *)

%o (Haskell)

%o a208976 n = a208976_list !! n

%o a208976_list = map (subtract 1) $ tail a050168_list

%K nonn

%O 0,2

%A _Reinhard Zumkeller_, Mar 04 2012

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 09:49 EDT 2024. Contains 371967 sequences. (Running on oeis4.)