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.
%I A348877 #9 Nov 03 2021 04:44:56 %S A348877 1,2,12,232,15792,4108192,4223439552,17316156716672, %T A348877 283777228606348032,18598759772257600748032, %U A348877 4875627680189345535622228992,5112485673116229482189477259405312,21443339558695300334256395183459423465472,359759625310995318218730673236935427042834358272 %N A348877 G.f. A(x) satisfies: A(x) = 1 / (1 - x - x * A(4*x)). %F A348877 a(0) = 1; a(n) = a(n-1) + Sum_{k=0..n-1} 4^k * a(k) * a(n-k-1). %F A348877 a(n) ~ c * 2^(n*(n-1)), where c = 2*Product_{j>=1} (4^j+1)/(4^j-1) = 3.938520707336538863894387393934531340132379924622409970534801850699757421... - _Vaclav Kotesovec_, Nov 03 2021 %t A348877 nmax = 13; A[_] = 0; Do[A[x_] = 1/(1 - x - x A[4 x]) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] %t A348877 a[0] = 1; a[n_] := a[n] = a[n - 1] + Sum[4^k a[k] a[n - k - 1], {k, 0, n - 1}]; Table[a[n], {n, 0, 13}] %Y A348877 Cf. A006318, A015085, A348875, A348876. %K A348877 nonn %O A348877 0,2 %A A348877 _Ilya Gutkovskiy_, Nov 02 2021