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!)
A351814 G.f. A(x) satisfies A(x) = 1 + x * A(x/(1 - x)^4) / (1 - x). 3
1, 1, 2, 8, 42, 272, 2115, 19010, 192760, 2172468, 26896081, 362184998, 5262526484, 81969555736, 1361249430071, 23989460080079, 446832403813788, 8765575657218860, 180544405959236487, 3893718987163468969, 87711985393624557487, 2059264143275898894916 (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+3*k-1,n-k-1) * a(k).
MATHEMATICA
nmax = 21; A[_] = 0; Do[A[x_] = 1 + x A[x/(1 - x)^4]/(1 - x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n + 3 k - 1, n - k - 1] a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 21}]
CROSSREFS
Sequence in context: A121635 A002874 A324961 * A078592 A225108 A052646
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 11 03:32 EDT 2024. Contains 375059 sequences. (Running on oeis4.)