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”).

A374857
Obverse convolution (n)**(Fibonacci(n)); see Comments.
1
0, 1, 4, 36, 432, 8000, 216000, 8668296, 516311040, 46066268160, 6197083200000, 1266665976576000, 396044443339776000, 190620194701725734400, 142017680690039344619520, 164583068009095149120000000, 297947499870194922871259136000
OFFSET
0,3
COMMENTS
See A374848 for the definition of obverse convolution and a guide to related sequences.
MATHEMATICA
s[n_] := n; t[n_] := Fibonacci[n];
u[n_] := Product[s[k] + t[n - k], {k, 0, n}]
Table[u[n], {n, 0, 20}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Clark Kimberling, Aug 05 2024
STATUS
approved