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.

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

This page as a plain text file.
%I A346734 #7 Jul 31 2021 09:44:21
%S A346734 1,1,1,1,1,3,6,10,15,27,55,111,210,388,741,1473,2956,5856,11514,22806,
%T A346734 45756,92394,186459,375867,759519,1541803,3140775,6407307,13081230,
%U A346734 26745378,54797850,112495734,231270690,475960278,980643070,2023057266,4178837181,8641346835
%N A346734 G.f. A(x) satisfies: A(x) = 1 + x + x^2 + x^3 + x^4 * A(x)^3.
%F A346734 a(0) = ... = a(3) = 1; a(n) = Sum_{i=0..n-4} Sum_{j=0..n-i-4} a(i) * a(j) * a(n-i-j-4).
%t A346734 nmax = 37; A[_] = 0; Do[A[x_] = 1 + x + x^2 + x^3 + x^4 A[x]^3 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
%t A346734 a[n_] := a[n] = If[n < 4, 1, Sum[Sum[a[i] a[j] a[n - i - j - 4], {j, 0, n - i - 4}], {i, 0, n - 4}]]; Table[a[n], {n, 0, 37}]
%Y A346734 Cf. A001764, A019497, A307971, A346733, A346735.
%K A346734 nonn
%O A346734 0,6
%A A346734 _Ilya Gutkovskiy_, Jul 30 2021