A373445 Triple convolution of the three tribonacci-like sequences A000073(n), A077947(n-2), and A103143(n).
0, 0, 0, 0, 0, 0, 1, 3, 9, 28, 75, 195, 498, 1229, 2978, 7115, 16756, 39031, 90089, 206228, 468795, 1059197, 2380257, 5323610, 11856514, 26306896, 58172254, 128246136, 281957282, 618367332, 1353112803
Offset: 0
Keywords
Examples
For n=7 the triple convolution of the three sequences b(n)=A000073(n), c(n)=A077947(n-2) with c(0)=c(1)=0, and d(n)=A103143(n) has only three nonzero terms in the sum: b(2)*c(2)*d(3), b(2)*c(3)*d(2), and b(3)*c(2)*c(2). All three terms are 1, so the triple convolution adds up to 3. Hence, a(7) = 3.
Programs
-
Mathematica
CoefficientList[Series[x^6/((1-x-x^2-x^3)(1-x-x^2-2x^3)(1-x-x^2-3x^3)), {x, 0, 30}], x]
Comments