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.

A346733 G.f. A(x) satisfies: A(x) = 1 + x + x^2 + x^3 * A(x)^3.

This page as a plain text file.
%I A346733 #7 Aug 01 2021 03:49:23
%S A346733 1,1,1,1,3,6,10,21,48,103,219,489,1114,2517,5712,13152,30492,70812,
%T A346733 165165,387456,912378,2154250,5102343,12123027,28878384,68947041,
%U A346733 164979006,395604531,950428335,2287387152,5514240673,13314167718,32194109193,77953239507,188997294360
%N A346733 G.f. A(x) satisfies: A(x) = 1 + x + x^2 + x^3 * A(x)^3.
%F A346733 a(0) = a(1) = a(2) = 1; a(n) = Sum_{i=0..n-3} Sum_{j=0..n-i-3} a(i) * a(j) * a(n-i-j-3).
%t A346733 nmax = 34; A[_] = 0; Do[A[x_] = 1 + x + x^2 + x^3 A[x]^3 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
%t A346733 a[n_] := a[n] = If[n < 3, 1, Sum[Sum[a[i] a[j] a[n - i - j - 3], {j, 0, n - i - 3}], {i, 0, n - 3}]]; Table[a[n], {n, 0, 34}]
%Y A346733 Cf. A001764, A019497, A307970, A346734, A346735.
%K A346733 nonn
%O A346733 0,5
%A A346733 _Ilya Gutkovskiy_, Jul 30 2021