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-2 of 2 results.

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

Original entry on oeis.org

1, 1, 5, 11, 95, 150, 2688, -111, 98489, -215578, 4416842, -18887063, 230670421, -1356589436, 13381147908, -92724422022, 831047516316, -6277471705749, 53925750947589, -426682784513559, 3602138266461603, -29250145766625450, 245524688963062050
Offset: 0

Views

Author

Seiichi Manyama, Apr 20 2024

Keywords

Crossrefs

Programs

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

Formula

a(n) = (1/(n+1)) * Sum_{k=0..n} 9^(n-k) * binomial(n+k,k) * binomial(k/3,n-k).
From Seiichi Manyama, Nov 30 2024: (Start)
G.f.: exp( Sum_{k>=1} A378555(k) * x^k/k ).
a(n) = (1/(n+1)) * [x^n] 1/(1 - x*(1 + 9*x)^(1/3))^(n+1).
G.f.: (1/x) * Series_Reversion( x*(1 - x*(1 + 9*x)^(1/3)) ). (End)

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

Original entry on oeis.org

1, 1, 5, 24, 149, 945, 6464, 45360, 328661, 2426971, 18244053, 138988092, 1071271988, 8336754044, 65421283160, 517081111568, 4112772482949, 32894217211791, 264391091936095, 2134466592084000, 17300375657257629, 140728012021470193, 1148477345709237844
Offset: 0

Views

Author

Seiichi Manyama, Apr 20 2024

Keywords

Crossrefs

Cf. A372136.

Programs

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

Formula

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