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.

A372002 G.f. A(x) satisfies A(x) = ( 1 + 4*x*(1 + x*A(x)) )^(1/2).

Original entry on oeis.org

1, 2, 0, 4, -8, 24, -72, 224, -720, 2368, -7936, 27008, -93088, 324288, -1140032, 4039296, -14409728, 51713792, -186577152, 676334592, -2462090752, 8997154816, -32992079872, 121362092032, -447721572864, 1656081763328, -6140640246784, 22820403312640
Offset: 0

Views

Author

Seiichi Manyama, Apr 15 2024

Keywords

Crossrefs

Cf. A372003.

Programs

  • Maple
    A372002 := proc(n)
        add(4^k*binomial((n-k+1)/2,k)*binomial(k,n-k)/(n-k+1),k=0..n) ;
    end proc:
    seq(A372002(n),n=0..60) ; # R. J. Mathar, Apr 22 2024
  • PARI
    my(N=30, x='x+O('x^N)); Vec((1+4*x)/(-2*x^2+sqrt(1+4*x+4*x^4)))
    
  • PARI
    a(n) = sum(k=0, n, 4^k*binomial(n/2-k/2+1/2, k)*binomial(k, n-k)/(n-k+1));

Formula

G.f.: A(x) = (1+4*x)/(-2*x^2 + sqrt(1+4*x+4*x^4)).
a(n) = Sum_{k=0..n} 4^k * binomial(n/2-k/2+1/2,k) * binomial(k,n-k)/(n-k+1).
D-finite with recurrence n*a(n) +2*(2*n-3)*a(n-1) +4*(n-6)*a(n-4)=0. - R. J. Mathar, Apr 22 2024

A372017 G.f. A(x) satisfies A(x) = ( 1 + 9*x/(1 - x*A(x)) )^(1/3).

Original entry on oeis.org

1, 3, -6, 39, -213, 1425, -9681, 69393, -509307, 3827856, -29254443, 226787682, -1778491446, 14084085711, -112462798281, 904485811944, -7319902809228, 59565238152789, -487071807495099, 4000169922457260, -32980470088198209, 272875134913543488
Offset: 0

Views

Author

Seiichi Manyama, Apr 15 2024

Keywords

Crossrefs

Cf. A372003.

Programs

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

Formula

a(n) = Sum_{k=0..n} 9^k * binomial(n/3-k/3+1/3,k) * binomial(n-1,n-k)/(n-k+1).

A372089 G.f. A(x) satisfies A(x) = 1/( 1 - 9*x*(1 + x*A(x)) )^(1/3).

Original entry on oeis.org

1, 3, 21, 171, 1512, 14040, 134775, 1325457, 13279329, 135014931, 1389328200, 14440275000, 151366896639, 1598281697205, 16983592285797, 181478066048739, 1948770301135167, 21018820972926429, 227600123488744275, 2473358642698093245, 26965560597470251857
Offset: 0

Views

Author

Seiichi Manyama, Apr 17 2024

Keywords

Crossrefs

Cf. A372003.

Programs

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

Formula

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