login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A346763 G.f. A(x) satisfies: A(x) = 1 / (1 - 3*x) + x * (1 - 3*x) * A(x)^3. 1
1, 4, 18, 93, 550, 3636, 26079, 197931, 1562382, 12685116, 105187512, 886700898, 7574331987, 65413265014, 570155069547, 5008957733472, 44306834969838, 394269180748272, 3527034255411864, 31700659283908242, 286124960854479888, 2592334353741781752, 23567790327842864046 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Third binomial transform of A001764.
LINKS
FORMULA
a(n) = Sum_{k=0..n} binomial(n,k) * binomial(3*k,k) * 3^(n-k) / (2*k + 1).
a(n) ~ 3^(n - 5/2) * 13^(n + 3/2) / (sqrt(Pi) * n^(3/2) * 2^(2*(n+1))). - Vaclav Kotesovec, Nov 26 2021
MATHEMATICA
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]
Table[Sum[Binomial[n, k] Binomial[3 k, k] 3^(n - k)/(2 k + 1), {k, 0, n}], {n, 0, 22}]
Table[3^n HypergeometricPFQ[{1/3, 2/3, -n}, {1, 3/2}, -9/4], {n, 0, 22}]
CROSSREFS
Sequence in context: A123589 A245103 A200717 * A121584 A209256 A367282
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 02 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 02:14 EDT 2024. Contains 371906 sequences. (Running on oeis4.)