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!)
A351813 G.f. A(x) satisfies: A(x) = 1 + x * A(x/(1 - x)^3) / (1 - x). 5
1, 1, 2, 7, 32, 179, 1184, 8977, 76391, 719132, 7405261, 82654011, 992533974, 12744345310, 174073918884, 2518084939316, 38429337167618, 616676966998463, 10374679318111371, 182506045254212184, 3349265281648290030, 63984975864984809787, 1270096455615572678617 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=0..n-1} binomial(n+2*k-1,n-k-1) * a(k).
MATHEMATICA
nmax = 22; A[_] = 0; Do[A[x_] = 1 + x A[x/(1 - x)^3]/(1 - x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n + 2 k - 1, n - k - 1] a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 22}]
CROSSREFS
Sequence in context: A006014 A121555 A265165 * A301465 A097900 A373772
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 19 2022
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 July 13 09:52 EDT 2024. Contains 374274 sequences. (Running on oeis4.)