Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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!)
A351816 G.f. A(x) satisfies: A(x) = 1 + x * A(x/(1 - x)^3) / (1 - x)^3. 5
1, 1, 4, 16, 83, 526, 3826, 31338, 285556, 2857831, 31083421, 364523891, 4579906098, 61313286380, 870531542926, 13055593578453, 206097824225131, 3414146518958089, 59189048364709453, 1071264611091540458, 20197719805598878119, 395917304689782855768 (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 = 21; A[_] = 0; Do[A[x_] = 1 + x A[x/(1 - x)^3]/(1 - x)^3 + 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, 21}]
CROSSREFS
Sequence in context: A092304 A356297 A204066 * A022564 A123010 A121146
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 20 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 August 18 11:16 EDT 2024. Contains 375265 sequences. (Running on oeis4.)