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 A348859 #6 Nov 02 2021 09:50:38 %S A348859 1,2,11,204,13701,3550838,3646912991,14948746703872, %T A348859 244965160945456921,16054771878797715999594, %U A348859 4208710286900635084866205491,4413165224136772109314051383922356,18510169791808150609141704979384516863021,310549172324407121253872529077196811473762678750 %N A348859 G.f. A(x) satisfies: A(x) = 1 / ((1 - x) * (1 - x * A(4*x))). %F A348859 a(n) = 1 + Sum_{k=0..n-1} 4^k * a(k) * a(n-k-1). %F A348859 a(n) ~ c * 2^(n*(n-1)), where c = 3.399782064170449155365557063612838469541502782488369640092639686931819... - _Vaclav Kotesovec_, Nov 02 2021 %t A348859 nmax = 13; A[_] = 0; Do[A[x_] = 1/((1 - x) (1 - x A[4 x])) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] %t A348859 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 A348859 Cf. A007317, A015085, A348857, A348858. %K A348859 nonn %O A348859 0,2 %A A348859 _Ilya Gutkovskiy_, Nov 02 2021