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.

Showing 1-3 of 3 results.

A349533 G.f. A(x) satisfies A(x) = 1 / ((1 - 2 * x) * (1 - x * A(x)^2)).

Original entry on oeis.org

1, 3, 13, 74, 499, 3719, 29494, 243888, 2078431, 18122369, 160885449, 1449268478, 13213370392, 121696581804, 1130565483472, 10581614352704, 99685591788687, 944490400760597, 8994266558594671, 86040075341770806, 826423263373253923, 7967095415955791687
Offset: 0

Views

Author

Ilya Gutkovskiy, Nov 21 2021

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 21; A[] = 0; Do[A[x] = 1/((1 - 2 x) (1 - x A[x]^2)) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
    a[n_] := a[n] = 2^n + Sum[Sum[a[i] a[j] a[n - i - j - 1], {j, 0, n - i - 1}], {i, 0, n - 1}]; Table[a[n], {n, 0, 21}]
    Table[Sum[Binomial[n + k, 2 k] Binomial[3 k, k] 2^(n - k)/(2 k + 1), {k, 0, n}], {n, 0, 21}]

Formula

a(n) = 2^n + Sum_{i=0..n-1} Sum_{j=0..n-i-1} a(i) * a(j) * a(n-i-j-1).
a(n) = Sum_{k=0..n} binomial(n+k,2*k) * binomial(3*k,k) * 2^(n-k) / (2*k+1).
a(n) = 2^n*F([1/3, 2/3, -n, 1+n], [1/2, 1, 3/2], -3^3/2^5), where F is the generalized hypergeometric function. - Stefano Spezia, Nov 21 2021
a(n) ~ 177^(1/4) * (43 + 3*sqrt(177))^(n + 1/2) / (9 * sqrt(Pi) * n^(3/2) * 2^(3*n + 5/2)). - Vaclav Kotesovec, Nov 22 2021

A349534 G.f. A(x) satisfies A(x) = 1 / ((1 - 3 * x) * (1 - x * A(x)^2)).

Original entry on oeis.org

1, 4, 21, 138, 1063, 9075, 82770, 789204, 7766721, 78267306, 803447526, 8371413999, 88300495746, 941004684748, 10116276976218, 109578418285452, 1194764348642313, 13102287157827918, 144422108994233625, 1599198859915070640, 17780781456147340764
Offset: 0

Views

Author

Ilya Gutkovskiy, Nov 21 2021

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 20; A[] = 0; Do[A[x] = 1/((1 - 3 x) (1 - x A[x]^2)) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
    a[n_] := a[n] = 3^n + Sum[Sum[a[i] a[j] a[n - i - j - 1], {j, 0, n - i - 1}], {i, 0, n - 1}]; Table[a[n], {n, 0, 20}]
    Table[Sum[Binomial[n + k, 2 k] Binomial[3 k, k] 3^(n - k)/(2 k + 1), {k, 0, n}], {n, 0, 20}]

Formula

a(n) = 3^n + Sum_{i=0..n-1} Sum_{j=0..n-i-1} a(i) * a(j) * a(n-i-j-1).
a(n) = Sum_{k=0..n} binomial(n+k,2*k) * binomial(3*k,k) * 3^(n-k) / (2*k+1).
a(n) = 3^n*F([1/3, 2/3, -n, 1+n], [1/2, 1, 3/2], -3^2/2^4), where F is the generalized hypergeometric function. - Stefano Spezia, Nov 21 2021
a(n) ~ sqrt(5/Pi) * 3^(n-1) * 4^n / n^(3/2). - Vaclav Kotesovec, Nov 22 2021

A364646 G.f. satisfies A(x) = 1/(1 - 4*x) - x*A(x)^3.

Original entry on oeis.org

1, 3, 7, 16, 55, 235, 856, 2664, 9055, 37417, 151431, 533452, 1825972, 7141860, 29778280, 113688592, 400940751, 1499506693, 6185139781, 24862774872, 91529003839, 334939413067, 1338383383444, 5510330536000, 21217042841668, 77850045234108, 300471644949940
Offset: 0

Views

Author

Seiichi Manyama, Jul 31 2023

Keywords

Crossrefs

Programs

  • PARI
    a(n) = sum(k=0, n, (-1)^k*4^(n-k)*binomial(n+k, 2*k)*binomial(3*k, k)/(2*k+1));

Formula

a(n) = Sum_{k=0..n} (-1)^k * 4^(n-k) * binomial(n+k,2*k) * binomial(3*k,k) / (2*k+1).
Showing 1-3 of 3 results.