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.

A349582 G.f. A(x) satisfies: A(x) = 1 / (1 - 2*x) + x * (1 - 2*x)^3 * A(x)^5.

This page as a plain text file.
%I A349582 #16 Nov 26 2021 04:59:56
%S A349582 1,3,13,85,733,7292,78267,880250,10226237,121713373,1476272394,
%T A349582 18180126906,226704989103,2856790765238,36321840773980,
%U A349582 465362291912648,6002272018481901,77873186277771107,1015583616140910999,13306207249869273003,175064043975233981626
%N A349582 G.f. A(x) satisfies: A(x) = 1 / (1 - 2*x) + x * (1 - 2*x)^3 * A(x)^5.
%C A349582 Second binomial transform of A002294.
%F A349582 a(n) = Sum_{k=0..n} binomial(n,k) * binomial(5*k,k) * 2^(n-k) / (4*k+1).
%F A349582 a(n) = 2^n*F([1/5, 2/5, 3/5, 4/5, -n], [1/2, 3/4, 1, 5/4], -5^5/2^9), where F is the generalized hypergeometric function. - _Stefano Spezia_, Nov 22 2021
%F A349582 a(n) ~ 3637^(n + 3/2) / (78125 * sqrt(Pi) * n^(3/2) * 2^(8*n + 7/2)). - _Vaclav Kotesovec_, Nov 26 2021
%t A349582 nmax = 20; A[_] = 0; Do[A[x_] = 1/(1 - 2 x) + x (1 - 2 x)^3 A[x]^5 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
%t A349582 Table[Sum[Binomial[n, k] Binomial[5 k, k] 2^(n - k)/(4 k + 1), {k, 0, n}], {n, 0, 20}]
%o A349582 (PARI) a(n) = sum(k=0, n, binomial(n,k)*binomial(5*k,k)*2^(n-k)/(4*k+1)); \\ _Michel Marcus_, Nov 23 2021
%Y A349582 Cf. A002294, A064613, A346647, A346762, A349581, A349584, A349590, A349591.
%K A349582 nonn
%O A349582 0,2
%A A349582 _Ilya Gutkovskiy_, Nov 22 2021