cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A300866 Signed recurrence over binary strict trees: a(n) = 1 - Sum_{x + y = n, 0 < x < y < n} a(x) * a(y).

This page as a plain text file.
%I A300866 #12 Aug 27 2018 16:21:57
%S A300866 1,1,1,0,1,0,0,1,0,0,1,-1,1,1,-2,3,-1,-3,8,-8,1,14,-26,22,10,-59,90,
%T A300866 -52,-74,238,-291,80,417,-930,915,124,-1991,3483,-2533,-2148,9011,
%U A300866 -12596,5754,14350,-37975,42735,-4046,-77924,154374,-133903,-56529,376844,-591197,355941,522978,-1706239
%N A300866 Signed recurrence over binary strict trees: a(n) = 1 - Sum_{x + y = n, 0 < x < y < n} a(x) * a(y).
%H A300866 Andrew Howroyd, <a href="/A300866/b300866.txt">Table of n, a(n) for n = 0..500</a>
%t A300866 a[n_]:=a[n]=1-Sum[a[k]*a[n-k],{k,1,(n-1)/2}];
%t A300866 Array[a,40]
%o A300866 (PARI) seq(n)={my(v=vector(n)); for(n=1, n, v[n] = 1 - sum(k=1, (n-1)\2, v[k]*v[n-k])); concat([1], v)} \\ _Andrew Howroyd_, Aug 27 2018
%Y A300866 Cf. A000992, A001190, A007317, A063834, A099323, A196545, A220418, A273866, A273873, A289501, A290261, A300442, A300443, A300862, A300863, A300864, A300865.
%K A300866 sign
%O A300866 0,15
%A A300866 _Gus Wiseman_, Mar 13 2018