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 A346763 #6 Nov 26 2021 05:08:14 %S A346763 1,4,18,93,550,3636,26079,197931,1562382,12685116,105187512,886700898, %T A346763 7574331987,65413265014,570155069547,5008957733472,44306834969838, %U A346763 394269180748272,3527034255411864,31700659283908242,286124960854479888,2592334353741781752,23567790327842864046 %N A346763 G.f. A(x) satisfies: A(x) = 1 / (1 - 3*x) + x * (1 - 3*x) * A(x)^3. %C A346763 Third binomial transform of A001764. %F A346763 a(n) = Sum_{k=0..n} binomial(n,k) * binomial(3*k,k) * 3^(n-k) / (2*k + 1). %F A346763 a(n) ~ 3^(n - 5/2) * 13^(n + 3/2) / (sqrt(Pi) * n^(3/2) * 2^(2*(n+1))). - _Vaclav Kotesovec_, Nov 26 2021 %t A346763 nmax = 22; A[_] = 0; Do[A[x_] = 1/(1 - 3 x) + x (1 - 3 x) A[x]^3 + O[x]^(nmax + 1) // Normal,nmax + 1]; CoefficientList[A[x], x] %t A346763 Table[Sum[Binomial[n, k] Binomial[3 k, k] 3^(n - k)/(2 k + 1), {k, 0, n}], {n, 0, 22}] %t A346763 Table[3^n HypergeometricPFQ[{1/3, 2/3, -n}, {1, 3/2}, -9/4], {n, 0, 22}] %Y A346763 Cf. A001764, A104455, A188687, A346762. %K A346763 nonn %O A346763 0,2 %A A346763 _Ilya Gutkovskiy_, Aug 02 2021