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!)
A026702 a(n) = Sum_{k=0..floor(n/2)} T(n-k, k), T given by A026692. 2
1, 1, 2, 3, 5, 8, 15, 26, 48, 79, 137, 223, 403, 689, 1251, 2088, 3647, 6028, 10775, 18386, 33010, 55460, 96916, 161705, 287199, 490430, 873964, 1475256, 2575673, 4325448, 7646036, 13072664, 23169478, 39254755, 68456542 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
MATHEMATICA
T[_, 0] = 1; T[n_, n_] = 1; T[n_, k_] /; EvenQ[k] && 1 <= k/2 <= Floor[n/4] || EvenQ[n - k] && 1 <= (n - k)/2 <= Floor[n/4] := T[n, k] = T[n - 1, k - 1] + T[n - 2, k - 1] + T[n - 1, k]; T[n_, k_] := T[n, k] = T[n - 1, k - 1] + T[n - 1, k];
a[n_] := Sum[T[n - k, k], {k, 0, Floor[n/2]}];
Table[a[n], {n, 0, 34}] (* Jean-François Alcover, Jul 02 2017 *)
CROSSREFS
Sequence in context: A177486 A006982 A054539 * A000047 A101172 A192677
KEYWORD
nonn
AUTHOR
STATUS
approved

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 19 14:50 EDT 2024. Contains 371792 sequences. (Running on oeis4.)