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!)
A346734 G.f. A(x) satisfies: A(x) = 1 + x + x^2 + x^3 + x^4 * A(x)^3. 2
1, 1, 1, 1, 1, 3, 6, 10, 15, 27, 55, 111, 210, 388, 741, 1473, 2956, 5856, 11514, 22806, 45756, 92394, 186459, 375867, 759519, 1541803, 3140775, 6407307, 13081230, 26745378, 54797850, 112495734, 231270690, 475960278, 980643070, 2023057266, 4178837181, 8641346835 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
a(0) = ... = a(3) = 1; a(n) = Sum_{i=0..n-4} Sum_{j=0..n-i-4} a(i) * a(j) * a(n-i-j-4).
MATHEMATICA
nmax = 37; A[_] = 0; Do[A[x_] = 1 + x + x^2 + x^3 + x^4 A[x]^3 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[n_] := a[n] = If[n < 4, 1, Sum[Sum[a[i] a[j] a[n - i - j - 4], {j, 0, n - i - 4}], {i, 0, n - 4}]]; Table[a[n], {n, 0, 37}]
CROSSREFS
Sequence in context: A058576 A360893 A365696 * A366132 A230364 A214282
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 30 2021
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 May 9 09:10 EDT 2024. Contains 372347 sequences. (Running on oeis4.)