login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A372076
The sequence T_{3,1}(n,3).
1
0, 1, 2, 3, 7, 20, 51, 121, 290, 711, 1747, 4268, 10407, 25405, 62066, 151611, 370255, 904196, 2208267, 5393233, 13171682, 32168415, 78563131, 191870876, 468596895, 1144430581, 2794984562, 6826049523, 16670917207, 40714541300
OFFSET
0,3
REFERENCES
Maribel Díaz Noguera [Maribel Del Carmen Díaz Noguera], Rigoberto Flores, Jose L. Ramirez, and Martha Romero Rojas, Catalan identities for generalized Fibonacci polynomials, Fib. Q., 62:2 (2024), 100-111. See Table 3.
FORMULA
a(n) = Sum_{j=0..n-1} Sum_{k=0..n-j-1} binomial(n - j - 1, 3*k)*3^k. a(n+1) = a(n) + A097122(n). - Detlef Meya, Jun 22 2024
MATHEMATICA
a[n_] := Sum[Sum[Binomial[n - j - 1, 3*k]*3^k, {k, 0, n-j-1}], {j, 0, n-1}]; Table[a[n], {n, 0, 29}] (* Detlef Meya, Jun 22 2024 *)
CROSSREFS
Sequence in context: A293683 A006073 A052402 * A300041 A222939 A222867
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jun 17 2024
EXTENSIONS
a(11) and beyond from Detlef Meya, Jun 22 2024
STATUS
approved