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.

A351968 a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/3)} binomial(n-1,3*k) * a(k) * a(n-3*k-1).

This page as a plain text file.
%I A351968 #6 Feb 28 2022 07:51:45
%S A351968 1,1,1,1,2,6,16,37,114,478,1907,6777,28414,148580,758930,3580294,
%T A351968 18982050,117888762,720679726,4193516446,26798335830,191775198574,
%U A351968 1353198262531,9303932353127,69303156652024,559295471922890,4454686099742810,35198016469190740
%N A351968 a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/3)} binomial(n-1,3*k) * a(k) * a(n-3*k-1).
%F A351968 E.g.f.: exp( Sum_{n>=0} a(n) * x^(3*n+1) / (3*n+1)! ).
%t A351968 a[0] = 1; a[n_] := a[n] = Sum[Binomial[n - 1, 3 k] a[k] a[n - 3 k - 1], {k, 0, Floor[(n - 1)/3]}]; Table[a[n], {n, 0, 27}]
%Y A351968 Cf. A138314, A351969.
%K A351968 nonn
%O A351968 0,5
%A A351968 _Ilya Gutkovskiy_, Feb 26 2022