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!)
A351818 G.f. A(x) satisfies: A(x) = 1 + x * A(x/(1 - x)^5) / (1 - x)^5. 4
1, 1, 6, 31, 211, 1841, 18547, 210664, 2682657, 37807531, 581985596, 9696297528, 173702897000, 3327063115248, 67790086866271, 1462900566163696, 33310115601839624, 797687851718024035, 20032231443590167914, 526189230537615409571, 14423255501358439152231 (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+4*k+3,n-k-1) * a(k).
MATHEMATICA
nmax = 20; A[_] = 0; Do[A[x_] = 1 + x A[x/(1 - x)^5]/(1 - x)^5 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n + 4 k + 3, n - k - 1] a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 20}]
CROSSREFS
Sequence in context: A368535 A362387 A121754 * A200775 A244255 A299550
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 13:06 EDT 2024. Contains 375269 sequences. (Running on oeis4.)